adplus-dvertising

Welcome to the Object Oriented Programming MCQs Page

Dive deep into the fascinating world of Object Oriented Programming with our comprehensive set of Multiple-Choice Questions (MCQs). This page is dedicated to exploring the fundamental concepts and intricacies of Object Oriented Programming, a crucial aspect of Data Structures and Algorithms. In this section, you will encounter a diverse range of MCQs that cover various aspects of Object Oriented Programming, from the basic principles to advanced topics. Each question is thoughtfully crafted to challenge your knowledge and deepen your understanding of this critical subcategory within Data Structures and Algorithms.

frame-decoration

Check out the MCQs below to embark on an enriching journey through Object Oriented Programming. Test your knowledge, expand your horizons, and solidify your grasp on this vital area of Data Structures and Algorithms.

Note: Each MCQ comes with multiple answer choices. Select the most appropriate option and test your understanding of Object Oriented Programming. You can click on an option to test your knowledge before viewing the solution for a MCQ. Happy learning!

Object Oriented Programming MCQs | Page 8 of 26

Q71.
How many constructors can a class have?
Discuss
Answer: (d).any number
Discuss
Answer: (c).obtains memory for a new variable
Q73.
Consider the following statements:
int x = 22,y=15;
x = (x>y) ? (x+y) : (x-y);
What will be the value of x after executing these statements?
Discuss
Answer: (b).37
Discuss
Answer: (d).a run-time error
Discuss
Answer: (b).works with different data types
Q76.
Which of the following is the valid class declaration header for the derived class d with base classes b1 and b2?
Discuss
Answer: (a).class d : public b1, public b2
Discuss
Answer: (d).the program in which it occurs
Q78.
RunTime polymorphism is achieved by ___________
Discuss
Answer: (b).virtual function
Q79.
An array element is accessed using
Discuss
Answer: (b).an index number
Q80.
If there is a pointer p to object of a base class and it contains the address of an object of a derived class and both classes contain a virtual member function abc(), then the statement p->abc(); will cause the version of abc() in the __________class to be executed.
Discuss
Answer: (b).Derived class

Suggested Topics

Are you eager to expand your knowledge beyond Data Structures and Algorithms? We've curated a selection of related categories that you might find intriguing.

Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!