InterviewSolution
Saved Bookmarks
| 1. |
Is Java fully object-oriented? |
|
Answer» Java supports programming in the Object-Oriented PARADIGM, but it is not fully object-oriented. Java has a set of PRIMITIVE data types - byte, short, char, INT, long, float, DOUBLE, boolean. Any VARIABLE of this type is not an object. That’s why Java is not purely an object-oriented. |
|