OOPs MCQsOOPs stands for "Object-Oriented Programming System", OOPs is an approach/paradigm based on the concept of "objects" for developing software programming. It uses classes and objects to overcome flaws in the procedural approach to programs such as reusability and maintainability....
C++ is not a pure object-oriented language because it supports the oops concept as well as procedural-oriented features.Discuss this Question 19. C++ supports automatic garbage collection?True FalseAnswer: B) FalseExplanation:C++ does not support automatic garbage collection. Here we need to free ...
8. Which of the following is not a concept of OOP?Encapsulation Class Abstraction None of theseAnswer: D) None of theseExplanation:The concepts of OOPs are:Class Object Method Polymorphism Inheritance Encapsulation AbstractionDiscuss this Question ...