Which Among The Following Is Correct #43
Which among the following is correct?
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: Objects - Quiz No.2.
Which among the following is correct?
class student{ }s1,s2; s1.student()=s2.student();
class student{ }s1; class topper{ }t1; s1=t1;
class student{ }s1,s2; s1=s2;
class student{ }s1; class topper{ }t1; s1.student()=s2.topper();