當前位置:

java認證模擬試題及答案4

發(fā)表時間:2015/9/10 10:52:34 來源:互聯(lián)網 點擊關注微信:關注中大網校微信
關注公眾號

Question: 21

What will be output after execution of the following code:

outer: for(int i=0;i<3; i++)

inner: for(int j=0;j<2;j++)

{

if(j==1) continue outer;

System.out.println(j+ ?and ?+i);

}

A. 0 and 0

B. 0 and 1

C. 0 and 2

D. 1 and 0

E. 1 and 1

F. 1 and 2

G. 2 and 0

H. 2 and 1

I. 2 and 2

Explanation:

The continue statement is used to skip over and jump to the end of the loop body. Then if j equals to 1 it will jump to the end of the inner loop body.

Correct Answer: A,B,C 21 of 60

Question: 22

Given the following code:

switch (m)

{

case 0: System.out.println(Condition 0);

case 1: System.out.println(Condition 1);

case 2: System.out.println(Condition 2);

case 3: System.out.println(Condition 3);break;

default: System.out.println(Other Condition);

}

Which values of m will cause Condition 2 is output?

A. 0

B. 1

C. 2

D. 3

E. 4

F. None

Explanation:

In the block of switch, if there is no break sentence in one case the following sentences will be executed.

Correct Answer: A,B,C 22 of 60

Question: 23

Which method is called when the browser returns to the page containing the applet after moving to another URL?

A. init()

B. start()

C. stop()

D. destroy()

Explanation:

The start() runs whenever the applet becomes visible, such as when the browser returns to the page containing the applet after moving to another URL or the browser is restored after being iconized.

Correct Answer: B 23 of 60

Question: 24

If a thread calls the wait() method, which methods can make it continue to run?

A. join()

B. resume()

C. notify()

D. notifyAll()

E. high priority thread is ready

Explanation:

If a thread issues a wait() call it will pause execution until another thread issues a notify() or notifyAll() call. The pair of the methods are provided for thread communication.

Correct Answer: C,D 24 of 60

Question: 25

Which method is used to define the execution body of a thread?

A. start()

B. init()

C. run()

D. main()

E. synchronized()

Explanation:

The threads will always begin executing at the run() method, which contains the definition of the execution body.

Correct Answer: C 25 of 60

Question: 26

Which keyword is used to allow interaction with the lock flag?

A. native

B. static

C. synchronized

D. abstract

Explanation:

Every object has a lock flag. The synchronized keyword enables interaction with the flag, which allow exclusive access to that object.

Correct Answer: C 26 of 60

Question: 27

Which modifiers are legal in Java?

A. private

B. public

C. protected

D. protect

E. friend

Explanation:

The public, private, protected and no modifier are legal modifiers. The friend and protect are illegal in Java.

Correct Answer: A,B,C 27 of 60

編輯推薦

JAVA認證考試報考指南 / 更多JAVA考試資料

(責任編輯:zyc)

2頁,當前第1頁  第一頁  前一頁  下一頁
最近更新 考試動態(tài) 更多>