java is fully object oriented languages or not? why?
Answer Posted / likhitha
yes,java is fully object oriented language.because it mainly
depends upon objects.
| Is This Answer Correct ? | 0 Yes | 17 No |
Post New Answer View All Answers
What is a tasks priority and how is it used in scheduling?
what is the use of State Factories?
Explain the steps in details to load the server object dynamically?
What is the highest-level event class of the event-delegation model?
How are the elements of a borderlayout organized?
What is aop(assepct oriented programing)?
Which javutil classes and interfaces support event handling?
What are the pros and cons of detached objects?
To what value is a variable of the string type automatically initialized?
What are externizable interface?
Is the session factory thread safe?
Explain about RMI Architecture?
Define the remote object implementation?
Which class is the immediate superclass of the menucomponent class?
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!