Quiz: Classes and Inheritance
Test your understanding of classes and inheritance in C++.
We'll cover the following...
1
What is the output of the code below?
#include <iostream>
using namespace std;
class Score {
int x;
};
int main()
{
Score sc;
cout << sc.x;
return 0;
}
A)
0
B)
Garbage value
C)
Compiler error
D)
Run time error
Question 1 of 50 attempted