Teaching Rajasthan Basic Computer Instructor 2021 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
Both A and B.
4
None.