Mastering C++: A Comprehensive Quiz Based on 'Thinking in C++'

Disable ads (and more) with a membership for a one time $2.99 payment

Test your C++ skills with our quiz based on Bruce Eckel's 'Thinking in C++'. Dive into object-oriented programming, advanced topics, and fundamentals. Perfect for learners and experts alike. Assess your knowledge and become a C++ master!

Each practice test/flash card set has 50 randomly selected questions from a bank of over 500. You'll get a new set of questions each time!

Practice this question and more.


Which C++ feature allows a class to be defined as a type of another class?

  1. Encapsulation

  2. Composition

  3. Inheritance

  4. Association

The correct answer is: Inheritance

Inheritance in C++ is a feature that allows a class to inherit the properties and behaviors of another class, known as the base class or parent class. This is done by using the "extends" keyword when declaring the derived class. Composition is a design pattern that creates an object consisting of other objects, but it does not allow a class to be defined as a type of another class. Encapsulation refers to the ability to hide the internal workings of a class from the user, so it is not related to this feature. Association refers to the relationship between two separate classes, but it does not define a class as a type of another class. Therefore, the most appropriate answer is C.