SCJP Mock Exam 4(4)
添加时间: 2007-9-23 2:16:04 作者: JAVA题库 阅读次数:64 来源: http://www.d9soft.com
Answer to Question 24
--------------------------------------------------------------------------------
Question 25)
What will happen if you attempt to compile and run the following code?
Integer ten=new Integer(10);
Long nine=new Long (9);
System.out.println(ten + nine);
int i=1;
System.out.println(i + ten);
1) 19 followed by 20
2) 19 followed by 11
3) Error: Can't convert java lang Integer
4) 10 followed by 1
Answer to Question 25
--------------------------------------------------------------------------------
Question 26)
If you run the code below, what gets printed out?
String s=new String("Bicycle");
int iBegin=1;
char iEnd=3;
System.out.println(s.substring(iBegin,iEnd));
1) Bic
2) ic
3) icy
4) error: no method matching substring(int,char)
Answer to Question 26
--------------------------------------------------------------------------------
Question 27)
If you wanted to find out where the position of the letter v (ie return 2) in the string s
containing " Java ", which of the following could you use?
1) mid(2,s);
2) charAt(2);
3) s.indexOf('v');
4) indexOf(s,'v');
Answer to Question 27
--------------------------------------------------------------------------------
Question 28)
Given the following declarations
String s1=new String("Hello")
String s2=new String("there");
String s3=new String();
Which of the following are legal operations?
1) s3=s1 + s2;
2) s3=s1-s2;
3) s3=s1 & s2;
4) s3=s1 && s2
Answer to Question 28
--------------------------------------------------------------------------------
Question 29)
What is the result of the following operation?
System.out.println(4 3);
1) 6
2) 0
3) 1
4) 7
Answer to Question 29
--------------------------------------------------------------------------------
Question 30)
public class MyClass1 {
public static void main(String argv[]){ }
/*Modifier at XX */ class MyInner {}
}
What modifiers would be legal at XX in the above code?
1) public
2) private
3) static
4) friend
Answer to Question 30
--------------------------------------------------------------------------------
Question 31)
What will happen when you attempt to compile and run the following code?
public class Holt extends Thread{
private String sThreadName;
public static void main(String argv[]){
Holt h = new Holt();
h.go();
}
Holt(){}
Holt(String s){
sThreadName = s;
}
public String getThreadName(){
return sThreadName;
}
public void go(){
Holt first = new Holt("first");
first.start();
Holt second = new Holt("second");
second.start();
}
public void start(){
for(int i = 0; i < 2; i ++){
System.out.println(getThreadName() +i);
try{
Thread.sleep(100);
} catch(InterruptedException e){System.out.println(e.getMessage());}
}
}
}
1) Compile time error
2) Output of first0, second0, first0, second1
3) Output of first0, first1, second0, second1
4) Runtime error
Answer to Question 31
--------------------------------------------------------------------------------
Question 32)
An Applet has its Layout Manager set to the default of FlowLayout. What code would be correct to change to another Layout Manager.
1) setLayoutManager(new GridLayout());
2) setLayout(new GridLayout(2,2));
3) setGridLayout(2,2);
4) setBorderLayout();
Answer to Question 32
--------------------------------------------------------------------------------
Question 33)
What will happen when you attempt to compile and run the following code?.
1) It will compile and the run method will print out the increasing value of i.
2) It will compile and calling start will print out the increasing value of i.
3) The code will cause an error at compile time.
上一篇文章: SCJP Mock Exam 4(3) 下一篇文章: SCJP Mock Exam 4(5)
相关文章:
相关软件:

