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
Is there a sort function in java?
What is immutable state?
Explain the importance of finally block in java?
What is a line break?
What is a finally block?
How do you access command-line arguments within the code?
Who developed java?
Can we sort hashmap in java?
What is wrapper class example?
What is an off by one error in java?
What is the difference between a vector & an array list?
What is the Difference between Final Class && Abstract Class?
What is java argument list?
How do you read a char in java?
What are the different ways of creating thread?