java is fully object oriented languages or not? why?
Answer Posted / dev
No,java is not fully object oriented language because it does not support "multiple inheritence" and "pointers" which are used in C++.But,by using Interfaces we can implement multiple inheritence.Also,due to presence of Primitive datatypes,which are used in (AutoBoxing)...we can say it is not fully object oriented language.
| Is This Answer Correct ? | 5 Yes | 6 No |
Post New Answer View All Answers
What is the difference between java class and bean?
To what value is a variable of the string type automatically initialized?
How to implement RMI in Java?
Can I run seam with jdk 1.4 and earlier?
What is the difference between system.out ,system.err and system.in?
What is bean? Where can it be used?
Explain how will the struts know which action class to call when you submit a form?
Explain about thread synchronization inside a monitor?
How are commas used in the intialization and iteration parts of a for statement?
What are the diff types of exception?
What are callback interfaces?
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!
what is meant by JRMP?
Which container method is used to cause a container to be laid out and redisplayed?