Quiz: Classes and Inheritance
Test your understanding of classes and inheritance in C++.
We'll cover the following...
We'll cover the following...
Technical Quiz
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
1 / 5