Home Tutorial Java Scjp Part3 SCJP Module-3 Question-9

 
 

SCJP Module-3 Question-9
Posted on: July 12, 2010 at 12:00 AM
The given program will test your knowledge of Inheritance in Java programming and It is also very helpful for SCJP examination.

Given below the sample code :

class SuperClass {
String s = "Outer";

public static void main(String[] args) {
M2 m2 = new M2();
m2.display();
}
}

class M1 {
String s = "M1";

void display() {
System.out.println(s);
}
}

class M2 extends M1 {
String s = "M2";
}

What will be the output of the following code ?

1. Compile error

2. M1

3  M2

4. M1 M2.

Answer :

(2)

Related Tags for SCJP Module-3 Question-9:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.