Fundamentals of C++ Programming Quiz

Test your knowledge with 14 questions on C++ basics, operators, pointers, and more. Check your understanding of C++ programming now!

#1

Which of the following is NOT a fundamental data type in C++?

int
float
string
char
8 answered
#2

What is a constructor in C++?

A function used to destruct objects
A function used to allocate memory
A special member function with the same name as the class used to initialize objects
A function used to create objects
7 answered
#3

What does the 'endl' manipulator do in C++?

It ends the program execution
It prints a newline character and flushes the output buffer
It ends the current line and starts a new one
It prints an end-of-line character
7 answered
#4

What is the output of the following code?

int x = 5;
int y = 3;
int result = x % y;
std::cout << result;

2
1
0
Compiler error
7 answered
#5

What is the 'sizeof' operator used for in C++?

To determine the size of a data type or object in bytes
To calculate the sum of two numbers
To specify the number of elements in an array
To convert a data type to another data type
5 answered
#6

What is the output of the following C++ code snippet?

int x = 5;
int y = 2;
float result = x / y;
std::cout << result;

2.5
2
2.0
Compiler error
5 answered
#7

What is the difference between '++i' and 'i++' in C++?

'++i' increments the value of 'i' and then returns it, while 'i++' returns the value of 'i' and then increments it.
'++i' increments the value of 'i' after it's used in an expression, while 'i++' increments 'i' before it's used.
'++i' and 'i++' are the same and can be used interchangeably in C++.
'++i' and 'i++' are invalid expressions in C++.
5 answered
#8

What is the purpose of the 'static' keyword in C++?

To declare a constant variable
To define a variable with a fixed value
To specify that a variable or function is shared among all instances of a class
To specify the access level of a class member
3 answered
#9

What is the difference between 'public', 'private', and 'protected' access specifiers in C++?

'public' members can be accessed by any function, 'private' members can only be accessed by member functions of the same class, and 'protected' members can be accessed by member functions of derived classes.
'public' members can only be accessed by member functions of the same class, 'private' members can be accessed by any function, and 'protected' members can be accessed by member functions of derived classes.
'public' members can be accessed by any function, 'private' members can be accessed by member functions of the same class, and 'protected' members can only be accessed by member functions of derived classes.
'public', 'private', and 'protected' are all synonyms in C++.
3 answered
#10

What is a virtual function in C++?

A function that cannot be overridden
A function that is defined in the base class and can be overridden in derived classes
A function that can be called without creating an object of the class
A function that is automatically called when an object is created
2 answered
#11

What is the function of the 'new' operator in C++?

To allocate memory for an object
To delete an object from memory
To initialize an object
To perform arithmetic operations
4 answered
#12

What is the purpose of the 'friend' keyword in C++?

To declare a function or class as a member of another class
To allow a function or class access to the private and protected members of another class
To specify the visibility of a class member
To declare a function or class as a subclass of another class
3 answered
#13

What is the purpose of the 'this' pointer in C++?

To point to the previous object in a linked list
To access static members of a class
To point to the current object instance within a member function
To pass arguments to a member function
3 answered
#14

What is the output of the following code?

int x = 10;
int& ref = x;
ref += 5;
std::cout << x;

10
15
5
Compiler error
3 answered

Sign In to view more questions.

Sign InSign Up

Quiz Questions with Answers

Forget wasting time on incorrect answers. We deliver the straight-up correct options, along with clear explanations that solidify your understanding.

Test Your Knowledge

Craft your ideal quiz experience by specifying the number of questions and the difficulty level you desire. Dive in and test your knowledge - we have the perfect quiz waiting for you!

Other Quizzes to Explore