Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, Once you confirm your Email subscription, you will be able to download Job Inteview Questions Ebook . Please contact me if you there is any issue with the download.
Referencing of Instances
class B { // some code here}
class Ex {
public static void main(string args[]) {
A a=new B();
B b=new A();
a.add();
b.add();
}
Will this program run?
Explain the referencing the object instances.
What is the result;
Profile Answers by akhisharma Questions by akhisharma
Questions by akhisharma answers by akhisharma
Related Answered Questions
Related Open Questions