单项选择题

class Super { 
public int i = 0; 
public Super(String text) { 
i = 1;
} 
} 
public class Sub extends Super { 
public Sub(String text) { 
i = 2; 
} 
 public static void main(String args[]) { 
Sub sub = new Sub(“Hello”); 
System.out.println(sub.i); 
} 
} 
What is the result?()  

A. 0
B. 1
C. 2
D. Compilation fails.


您可能感兴趣的试卷

你可能感兴趣的试题

1.多项选择题

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.

4.单项选择题

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”.

6.多项选择题

1. public class OuterClass { 
2. private double d1 = 1.0; 
3. // insert code here 
4. } 
Which two are valid if inserted at line 3?()  

A. static class InnerOne { public double methoda() { return d1; } }
B. static class InnerOne { static double methoda() { return d1; } }
C. private class InnerOne { public double methoda() { return d1; } }
D. protected class InnerOne { static double methoda() { return d1; } }
E. public abstract class InnerOne { public abstract double methoda(); }

8.单项选择题

public class Test { 
public static void main(String[] args) { 
int x = 0; 
assert (x > 0) ? “assertion failed” : “assertion passed”; 
System.out.println(“Finished”); 
} 
} 
What is the result?()  

A. finished
B. Compilation fails.
C. An AssertionError is thrown and finished is output.
D. An AssertionError is thrown with the message “assertion failed”.
E. An AssertionError is thrown with the message “assertion passed”.