Consider The Code And Select The Wrong Choicep Pre Langcpp #88
Consider the code and select the wrong choice.</p> <pre><code class="language-cpp"> class hero { char name[10]; public : void disp() { cout<<name; } }; </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 Concept & Features - OOPs MCQ: Encapsulation - Quiz No.2.
Consider the code and select the wrong choice.
class hero { char name[10]; public : void disp() { cout<<name; } };
This maintains encapsulation
This code doesn’t maintain encapsulation
This code is vulnerable
This code gives error