InterviewSolution
| 1. |
Can java be said to be the complete object-oriented programming language? |
|
Answer» It is not wrong if we claim that java is the complete object-oriented PROGRAMMING language. Because Everything in Java is under the classes. And we can access that by creating the objects. But also if we say that java is not a COMPLETELY object-oriented programming language because it has the support of primitive data types like int, float, char, BOOLEAN, DOUBLE, etc. Now for the question: Is java a completely object-oriented programming language? We can say that - Java is not a pure object-oriented programming language, because it has direct access to primitive data types. And these primitive data types don't directly belong to the Integer classes. |
|