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 to perform merge sort in java?
What is boolean strategy?
what is use of functional interface in java 8?
Is string is a keyword in java?
What is sizeof () operator?
What type of language is java?
What are the restrictions imposed by a Security Manager on Applets?.
What is the concatenation operator in java?
What is the difference between delete and delete[]
Is string a data type in java?
What is a stringbuilder?
What happens if I remove static from main method?
What is the return type of the main method?
Explain about the main() method in java?
What is equlas() and hashcode() contract in java? Where does it used?