Which of the following is not a feature of OOP in C++?
C++ OOPs Concepts & Inheritance Quiz

Quiz
•
Engineering
•
University
•
Medium
Shrutika Nakadi
Used 2+ times
FREE Resource
20 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Encapsulation
Abstraction
Inheritance
Compilation
2.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
What is the default access specifier for members of a class in C++?
Public
Private
Protected
Internal
3.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
What type of inheritance is shown in the following code? class A { }; class B : public A { }; class C : public B { };
Single inheritance
Multiple inheritance
Multilevel inheritance
Hybrid inheritance
4.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
What is the output of this code? class Base { public: void show() { cout << "Base class"; } }; class Derived : public Base { public: void show() { cout << "Derived class"; } }; int main() { Derived d; d.show(); return 0; }
Base class
Derived class
Error
Nothing
5.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Which keyword is used to inherit a class in C++?
inherit
extends
using
:
6.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Which of the following is not a C++ token?
Identifier
Keyword
Punctuation
Class
7.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
What is the output of this code snippet? class A { public: int x = 10; }; class B : public A { public: void display() { cout << x; } }; int main() { B obj; obj.display(); return 0; }
Error
10
0
Garbage value
Create a free account and access millions of resources
Similar Resources on Quizizz
16 questions
Basic C Programming

Quiz
•
University
15 questions
TECH WHIZ

Quiz
•
University
15 questions
2.3.4 - NSPE Code of Ethics

Quiz
•
10th Grade - University
15 questions
CC SBL

Quiz
•
University
20 questions
Code Sprint '25

Quiz
•
University
15 questions
GENERAL PACKET RADIO SERVICES (GPRS)

Quiz
•
University
20 questions
SE CT3 QUIZ

Quiz
•
University
25 questions
PodiumRound

Quiz
•
University
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade