SCJP试题-SCJPMockExam4

来源:java认证发布时间:2012-11-12 12:48:14java认证视频



Question 22)

Which statement is true of the following code?

public class Agg{
public static void main(String argv[]){
Agg a = new Agg();
a.go();
}
public void go(){
DSRoss ds1 = new DSRoss("one");
ds1.start();
}
}

class DSRoss extends Thread{
private String sTname="";
DSRoss(String s){
sTname = s;
}
public void run(){
notwait();
System.out.println("finished");
}
public void notwait(){
while(true){
try{
System.out.println("waiting");
wait();
}catch(InterruptedException ie){}
System.out.println(sTname);
notifyAll();
}
}

}

1) It will cause a compile time error
2) Compilation and output of "waiting"
3) Compilation and output of "waiting" followed by "finished"
4) Runtime error, an exception will be thrown



Answer to Question 22 


--------------------------------------------------------------------------------

Question 23)

Which of the following methods can be legally inserted in place of the comment //Method Here ? 

class Base{
public void amethod(int i) { }
}

public class Scope extends Base{
public static void main(String argv[]){
}
//Method Here
}
1) void amethod(int i) throws Exception {} 
2) void amethod(long i)throws Exception {} 
3) void amethod(long i){} 
4) public void amethod(int i) throws Exception {} 

Answer to Question 23 


--------------------------------------------------------------------------------

Question 24)

Which of the following will output -4.0 

1) System.out.println(Math.floor(-4.7)); 
2) System.out.println(Math.round(-4.7)); 
3) System.out.println(Math.ceil(-4.7)); 
4) System.out.println(Math.min(-4.7)); 

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. 
4) Compilation will cause an error because while cannot take a parameter of true. 

class Background implements Runnable{ 

int i=0; 
public int run(){ 
while(true){ 
i++; 
System.out.println("i="+i); 
} //End while
return 1;
}//End run 

}//End class

Answer to Question 33 


--------------------------------------------------------------------------------

Question 34)

Which of the following statements about this code are true?

public class Morecombe{
public static void main(String argv[]){
Morecombe m = new Morecombe();
m.go(new Turing(){}); 
}
public void go(Turing t){
t.start();
}

}
class Turing extends Thread{
public void run(){
for(int i =0; i < 2; i++){
System.out.println(i);



}


1) Compilation error due to malformed parameter to go method
2) Compilation error, class Turing has no start method
3) Compilation and output of 0 followed by 1
4) Compilation but runtime error

Answer to Question 34 


视频学习

我考网版权与免责声明

① 凡本网注明稿件来源为"原创"的所有文字、图片和音视频稿件,版权均属本网所有。任何媒体、网站或个人转载、链接转贴或以其他方式复制发表时必须注明"稿件来源:我考网",违者本网将依法追究责任;

② 本网部分稿件来源于网络,任何单位或个人认为我考网发布的内容可能涉嫌侵犯其合法权益,应该及时向我考网书面反馈,并提供身份证明、权属证明及详细侵权情况证明,我考网在收到上述法律文件后,将会尽快移除被控侵权内容。

最近更新

社区交流

考试问答