#1
Which of the following is NOT a fundamental data type in C++?
string
ExplanationString 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
ExplanationConstructors 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
ExplanationThe 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
ExplanationThe 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
ExplanationVirtual 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
ExplanationThe output is 15 because the reference 'ref' modifies 'x'.