Why Java is not purely object oriented?
Answer Posted / rahul
Java is not a puerly object oriented language because
1) There is no concept called pass by reference in java
(primitive types are passed by value and objects references
are passed by value in java)
2) The concept of pointers is not used in java
3) we cannot implement multiple inheritance in java using
only classes and not an interface.
| Is This Answer Correct ? | 17 Yes | 12 No |
Post New Answer View All Answers
How can you generate random numbers in java?
How do you get the length of a string in java?
Can you declare an interface method static?
What is an association?
What do you mean by hashing?
Explain super keyword in java.
If a method is declared as protected, where may the method be accessed in java programming?
Explain access modifiers in java.
Can static methods be inherited?
What is compiler and what its output.
What is meant by interface?
Is it possible to compare various strings with the help of == operator?
State two differences between C and Java.
What is floating data type?
Is string a wrapper class?