Home Tutorial Java Scjp Part4 SCJP Module-4 Question-7

 
 

SCJP Module-4 Question-7
Posted on: July 9, 2010 at 12:00 AM
The program given below tests your understanding of method overriding in Java and help you for preparation of SCJP exam.

Given below the sample code :

import java.io.IOException;

class Example7 {
public float Twin(float x, float y)
throws IOException {
return 0;
}
}

class SubExample7 extends Example7 {
float Twin(float x, float y) {
return 0;
}
}

Is the above code run successfully ?Choose correct options :

1.Yes ,overloading is correct.

2.Yes , overriding is correct.

3.No, overriding is incorrect.

4.Compile successfully but not run.

Answer :

(3)

Explanation :

The overriding method must not limit access more than the overridden method i.e. the 'Twin' method in "Subexample7" doesn't have "public" access specifier.

Related Tags for SCJP Module-4 Question-7:


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.