单项选择题

1. class Exc0 extends Exception { } 
2. class Exc1 extends Exc0 { } 
3. public class Test { 
4. public static void main(String args[]) { 
5. try { 
6. throw new Exc1(); 
7. } catch (Exc0 e0) { 
8. System.out.println(“Ex0 caught”); 
9. } catch (Exception e) { 
10. System.out.println(“exception caught”); 
11. } 
12. } 
13. } 
What is the result?()  

A. Ex0 caught
B. exception caught
C. Compilation fails because of an error at line 2.
D. Compilation fails because of an error at line 6.


您可能感兴趣的试卷

你可能感兴趣的试题

3.多项选择题

public class X { 
public X aMethod() { return this;} 
} 
public class Y extends X { 
} 
Which two methods can be added to the definition of class Y?()

A. public void aMethod() {}
B. private void aMethod() {}
C. public void aMethod(String s) {}
D. private Y aMethod() { return null; }
E. public X aMethod() { return new Y(); }

4.单项选择题Which fragment is an example of inappropriate use of assertions? ()

A. assert (!(map.contains(x))); map.add(x);
B. if (x > 0){}else { assert (x==0); }
C. public void aMethod(int x) { assert (x > 0); }
D. assert (invariantCondition()); return retval;
E. switch (x) { case 1: break; case 2: creak; default: assert (x == 0);

5.单项选择题

int i = 1,j = 10; 
do{ 
if (i>j) { 
continue; 
} 
j--; 
} while (++i <6); 
System.out.println(“i = “ +i+” and j = “+j); 
What is the result?()  

A. i = 6 and j = 5
B. i = 5 and j = 5
C. i = 6 and j = 4
D. i = 5 and j = 6
E. i = 6 and j = 6

7.多项选择题

class A { 
} 
class Alpha { 
private A myA = new A(); 
void dolt( A a ) { 
a = null; 
} 
void tryIt() { 
dolt( myA ); 
} 
} 
Which two statements are correct?()  

A. There are no instanced of A that will become eligible for garbage collection.
B. Explicitly setting myA to null marks that instance to be eligible for garbage collection.
C. Any call on tryIt() causes the private instance of A to be marked for garbage collection.
D. Private instances of A become eligible for garbage collection when instances of Alpha become eligible for garbage collection.

10.单项选择题

public void foo( boolean a, boolean b ){ 
if( a ) { 
System.out.println( “A” ); 
} else if ( a && b ) { 
System.out.println( “A&&B” ); 
} else { 17. if ( !b ) { 
System.out.println( “notB” ); 
} else { 
System.out.println( “ELSE” ); 
} 
}
} 
What is correct?()  

A. If a is true and b is true then the output is “A&&B”.
B. If a is true and b is false then the output is “notB”.
C. If a is false and b is true then the output is “ELSE”.
D. If a is false and b is false then the output is “ELSE”.