java is fully object oriented languages or not? why?
Answer Posted / p soniya
java is not fully object oriented language because it does not support multiple inheritance directly. but it does so by using the concept of interfaces.
| Is This Answer Correct ? | 76 Yes | 13 No |
Post New Answer View All Answers
What value does read() return when it has reached the end of a file?
what is an isolation level?
whats is mean by connectionpooling
What is the difference between session and entity beans?
What is abstract schema?
Why is actionform a base class rather than an interface?
What is Remote Server?
What is an abstract method?
what is the use of State Factories?
What is local interface. How values will be passed?
Difference between swing and awt?
What is the relationship between an event-listener interface and an event-adapter class?
What are the different types of exception?
Brief description about local interfaces?
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!