#1
Which of the following is NOT a fundamental data type in C++?
8 answered
#2
What is a constructor in C++?
7 answered
#3
What does the 'endl' manipulator do in C++?
7 answered
#4What is the output of the following code?
What is the output of the following code?
int x = 5;
int y = 3;
int result = x % y;
std::cout << result;
7 answered
#5
What is the 'sizeof' operator used for in C++?
5 answered
#6What is the output of the following C++ code snippet?
What is the output of the following C++ code snippet?
int x = 5;
int y = 2;
float result = x / y;
std::cout << result;
5 answered
#7
What is the difference between '++i' and 'i++' in C++?
5 answered
#8
What is the purpose of the 'static' keyword in C++?
3 answered
#9
What is the difference between 'public', 'private', and 'protected' access specifiers in C++?
3 answered
#10
What is a virtual function in C++?
2 answered
#11
What is the function of the 'new' operator in C++?
4 answered
#12
What is the purpose of the 'friend' keyword in C++?
3 answered
#13
What is the purpose of the 'this' pointer in C++?
3 answered
#14What is the output of the following code?
What is the output of the following code?
int x = 10;
int& ref = x;
ref += 5;
std::cout << x;
3 answered