background image

  9. i++ ; 

  10. foo('D'); 

  12. } 

  13. } 

 

九塾教育 http://rooms9.com

 

  14. } 

  What is the result? 

  A. ABDCBDCB 

  B. ABCDABCD 

  C. Compilation fails. 

  D. An exception is thrown at runtime.

QUESTION NO: 3

  1. class A { 

  2. protected int method1(int a, int b) { return 0; } 

  3. } 

  Which two are valid in a class that extends class A? (Choose two) 

  A. public int method1(int a, int b) { return 0; } 

  B. private int method1(int a, int b) { return 0; } 

  C. private int method1(int a, long b) { return 0; } 

  D. public short method1(int a, int b) { return 0; } 

  E. static protected int method1(int a, int b) { return 0; } 

  QUESTION NO: 4 

  1. public class Outer{ 

  2. public void someOuterMethod() {