Learn Mode

Fundamentals of C++ Programming Quiz

#1

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

string
Explanation

String is not a fundamental data type in C++.

#2

What is a constructor in C++?

A special member function with the same name as the class used to initialize objects
Explanation

Constructors initialize objects in C++.

#3

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

It prints a newline character and flushes the output buffer
Explanation

'endl' flushes the output buffer and adds a newline in C++.

#4

What is the output of the following code?

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

1
Explanation

The output is 1 because it's the remainder of x divided by y.

#5

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

To determine the size of a data type or object in bytes
Explanation

'sizeof' operator calculates the size of data types or objects in bytes.

#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
Explanation

The result is 2 because integer division yields an integer.

#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.
Explanation

'++i' and 'i++' differ in their return and increment operations.

#8

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

To specify that a variable or function is shared among all instances of a class
Explanation

'static' keyword denotes shared variables or functions in C++ classes.

#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.
Explanation

'public', 'private', and 'protected' control the visibility of class members in C++.

#10

What is a virtual function in C++?

A function that is defined in the base class and can be overridden in derived classes
Explanation

Virtual functions enable polymorphism in C++.

#11

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

To allocate memory for an object
Explanation

'new' allocates memory for objects dynamically in C++.

#12

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

To allow a function or class access to the private and protected members of another class
Explanation

'friend' grants non-member functions access to private and protected members.

#13

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

To point to the current object instance within a member function
Explanation

'this' pointer refers to the current object instance in C++.

#14

What is the output of the following code?

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

15
Explanation

The output is 15 because the reference 'ref' modifies 'x'.

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!