单项选择题

public class Foo {  
public void main (String args) {  
system.out.printIn(“Hello World.”);  
}  
}  
What is the result? () 

A. An exception is thrown.
B. The code does no compile.
C. “Hello World.” Is printed to the terminal.
D. The program exits without printing anything.


您可能感兴趣的试卷

你可能感兴趣的试题

1.单项选择题

1. public class Test {  
2. public static void main (String args) {  
3. unsigned byte b = 0;  
4. b--;  
5.  
6. }  
7. }  
What is the value of b at line 5?()  

A. -1
B. 255
C. 127
D. Compilation will fail.
E. Compilation will succeed but the program will throw an exception at line 4.

2.单项选择题What is the numerical range of a char?()  

A. 0 . . . 32767
B. 0 . . . 65535
C. –256 . . . 255
D. –32768 . . . 32767
E. Range is platform dependent.

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

A. 3/2
B. 3<2
C. 3*4
D. 3<<2
E. 3*2^2
F. 3<<<2

7.单项选择题

public class SyncTest { 
private int x;  
private int y;  
public synchronized void setX (int i) (x=1;)  
public synchronized void setY (int i) (y=1;)  
public synchronized void setXY(int 1)(set X(i); setY(i);)  
public synchronized Boolean check() (return x !=y;)  
}  
Under which conditions will check () return true when called from a different class? 

A. Check() can never return true.
B. Check() can return true when setXY is called by multiple threads.
C. Check() can return true when multiple threads call setX and setY separately.
D. Check() can only return true if SyncTest is changed to allow x and y to be set separately.

8.单项选择题

public class X implements Runnable(  
 private int x;  
private int y; 
 public static void main(Stringargs) 
X that = new X();  
(new Thread(that)).start(); 
(new Thread(that)).start(); 
) 
public void run() ( 
for (;;) ( 
x++;  
y++;  
System.out.printIn(“x=” + x + “, y = ” + y);  
)  
)  
What is the result?()  

A. Errors at lines 7 and 8 cause compilation to fail.
B. The program prints pairs of values for x and y that might not always be the same on the same line  (for example, “x=2, y=1”).
C. The program prints pairs of values for x and y that are always the same on the same line (for example, “x=1, y=1”. In addition, each value appears twice (for example, “x=1, y=1” followed by  “x=1, y=1”).
D. The program prints pairs of values for x and y that are always the same on the same line (for example, “x=1, y=1”. In addition, each value appears only for once (for example, “x=1, y=1”  followed by “x=2, y=2”).

9.单项选择题Which statement is true for the class java.util.ArrayList?() 

A. The elements in the collection are ordered.
B. The collection is guaranteed to be immutable.
C. The elements in the collection are guaranteed to be unique.
D. The elements in the collection are accessed using a unique key.
E. The elements in the collections are guaranteed to be synchronized.

10.多项选择题You need to store elements in a collection that guarantees that no duplicates are stored. Which two interfaces provide that capability?()

A. Java.util.Map
B. Java.util.Set
C. Java.util.List
D. Java.util.StoredSet
E. Java.util.StoredMap
F. Java.util.Collection