InterviewSolution
Saved Bookmarks
| 1. |
Can we run a Java application without implementing the OOPs concept? |
|
Answer» No. Java applications are based on Object-oriented PROGRAMMING models or OOPs concept, and hence they cannot be implemented without it. However, on the other HAND, C++ can be implemented without OOPs, as it ALSO supports the C-like structural programming MODEL. |
|