单项选择题

public class X {  
public static void main (String args) {  
byte b = 127;  
byte c = 126;  
byte d = b + c;  
}  
}  
Which statement is true?()  

A. Compilation succeeds and d takes the value 253.
B. Line 5 contains an error that prevents compilation.
C. Line 5 throws an exception indicating “Out of range”
D. Line 3 and 4 contain error that prevent compilation.
E. The compilation succeeds and d takes the value of 1.


您可能感兴趣的试卷

你可能感兴趣的试题

1.单项选择题

public class X {  
public static void main (Stringargs) {  
int a = new int [1]  
modify(a);  
System.out.printIn(a[0]);  
}  
public static void modify (int a) {  
a[0] ++;  
 }  
 }  
What is the result?()  

A. The program runs and prints “0”
B. The program runs and prints “1”
C. The program runs but aborts with an exception.
D. An error “possible undefined variable” at line 4 causes compilation to fail.
E. An error “possible undefined variable” at line 9 causes compilation to fail.

2.多项选择题Which two are equivalent? ()  

A. 16>4
B. 16/2
C. 16*4
D. 16>>2
E. 16/2^2
F. 16>>>2

3.单项选择题

public class X {  
public static void main (Stringargs) {  
string s = new string (“Hello”);  
modify(s);  
System.out.printIn(s);  
}  
public static void modify (String s) {  
s += “world!”;  
}  
}  
What is the result?() 

A.The program runs and prints “Hello”
B.An error causes compilation to fail.
C.The program runs and prints “Hello world!”
D.The program runs but aborts with an exception.

5.单项选择题

public class X {  
public static void main (Stringargs) {  
String s1 = new String (“true”);  
Boolean b1 = new Boolean (true);  
if (s2.equals(b1)) {  
System.out.printIn(“Equal”);  
}  
}  
}  
What is the result? () 

A. The program runs and prints nothing.
B. The program runs and prints “Equal”
C. An error at line 5 causes compilation to fail.
D. The program runs but aborts with an exception.

6.单项选择题

String foo = “blue”;  
 Booleanbar = new Boolean [1];  
 if (bar[0]) {  
 foo = “green”;  
 }  
What is the result?()  

A. Foo has the value of “”
B. Foo has the value of null.
C. Foo has the value of “blue”
D. Foo has the value of “green”
E. An exception is thrown.
F. The code will not compile.

7.多项选择题Which two valid declarations of a char? ()

A. Char ch = “a”;
B. Char ch = ‘“‘ ‘;
C. Char ch = ‘cafe‘;
D. Char ch = “cafe”;
E. Char ch = ‘“ucafe‘;
F. Char ch = ‘“u10100‘;
G. Char ch = (char) true;

8.单项选择题

Given:  310-025  
Leading the way in IT testing and certification tools, www.testking.com  
- 48 -  
public class foo {  
static String s;  
public static void main (Stringargs) {  
system.out.printIn (“s=” + s);  
}  
}  
What is the result?()

A. The code compiles and “s=” is printed.
B. The code compiles and “s=null” is printed.
C. The code does not compile because string s is not initialized.
D. The code does not compile because string s cannot be referenced.
E. The code compiles, but a NullPointerException is thrown when toString is called.

9.多项选择题

public interface Foo{ 
int k = 4;  
}  
Which three are equivalent to line 2? ()

A. Final int k = 4;
B. Public int k = 4;
C. Static int k = 4;
D. Private int k = 4;
E. Abstract int k = 4;
F. Volatile int k = 4;
G. Transient int k = 4;
H. Protected int k = 4;

10.单项选择题

int index = 1;  
String test = new String;  
String foo = test[index]; 
What is the result?()

A.  Foo has the value “”
B. Foo has the value null
C. An exception is thrown
D. The code will not compile