InterviewSolution
Saved Bookmarks
| 1. |
JavaScript is a _______________ language.(a) Object-Oriented(b) High-level(c) Assembly-language(d) Object-Based |
|
Answer» The correct choice is (d) Object-Based Easiest explanation: JavaScript is not a full-blown OOP (Object-Oriented Programming) language, such as Java or PHP, but it is an object-based language. The criteria for object orientation are the classic threesome of polymorphism, encapsulation and inheritance and JavaScript doesn’t pass this. |
|