单项选择题

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.


您可能感兴趣的试卷

你可能感兴趣的试题

1.多项选择题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;

2.单项选择题

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.

3.多项选择题

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;

4.单项选择题

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

7.单项选择题Which is a valid identifier?() 

A. false
B. default
C. _object
D. a-class

8.单项选择题Which constructs a BufferedIputStream?()

A. New BufferedInputStream(“in.txt”);
B. New BufferedInputStream(new File(“in.txt”));
C. New BufferedInputStream(Writer(“in.txt”));
D. New BufferedInputStream(new Writer(“in.txt”));
E. New BufferedInputStream(new InputStream(“in.txt”));
F. New BufferedInputStream(new FileInputStream(“in.txt”));

9.多项选择题Which two construct an OutputSream that appends to the file “file.txt”? ()

A. OutputStream out=new FileOutputStream(“file.txt”);
B. OutputStream out=new FileOutputStream(“file.txt”, “append”);
C. FileOutputStream out=new FileOutputStream(“file.txt”, true);
D. FileOutputStream out=new FileOutputStream(new file(“file.txt”));
E. OutputStream out=new FileOutputStream(new File(“file.txt”)true);

10.多项选择题Which two create an InputStream and open file the “file.txt” for reading? ()

A. InputStream in=new FileReader(“file.txt”);
B. InputStream in=new FileInputStream(“file.txt”);
C. InputStream in=new InputStreamFileReader (“file.txt”, “read”);
D. FileInputStream in=new FileReader(new File(“file.txt”));
E. FileInputStream in=new FileInputStream(new File(“file.txt”));