Teaching BPSC 4.0 बिहार उच्च माध्यमिक शिक्षक भर्ती (PGT) Mock Test Programming and Data Structure OOPs concept
Which class in the following code is the Parent class as per the syntax of C++.
#include
using namespace std;
class B
{
//code
};
class A : public B
{
//code
};
1
Class B
2
Class A
3
Class A and B.
4
More than one of the above
5
None of the above