GIAC Related Exams
GSSP-Java Exam
Which of the following is the return type of the getInitParameter() method of the ServletContext interface?
Which of the following methods belongs to the Refreshable interface?
You write the following code.
class Father {public void Method() {System.out.println("I am Father");}}
public class Son extends Father {public static void main(String argv[]) {Son son = new Son();son.Method();}
private void Method() {System.out.println("I am Son");}}
Which of the following will be the result, when you try to compile and run the code?