Which Among The Following Is Correct For The Code Givenp Pre #234
Which among the following is correct for the code given?</p> <pre><code class="language-cpp"> class A { private: int marks; A() { } Public : disp() { cout<< marks; } }; class B: public A { } B b; </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs111 OOP Object Oriented Programming Java. It can also be found in gs gs111 OOps Access Specifiers - OOPs MCQ: Protected Access Specifier - Quiz No.1.
Which among the following is correct for the code given?
class A { private: int marks; A() { } Public : disp() { cout<< marks; } }; class B: public A { } B b;
Instance of B will not be created
Instance of B will be created
Program gives compile time error
Program gives runtime error