SCJP考试题310-025(第二套)92-147/147

来源:java认证发布时间:2012-11-12 13:05:41java认证视频


QUESTION NO: 103
Given:
1. switch (i) {
2. default:
3. System.out.printIn(“Hello”);
4. )
What is the acceptable type for the variable i?
A. Byte
B. Long
C. Float
D. Double
E. Object
F. A and B
G. C and D
Answer: A
QUESTION NO: 104
You need to store elements in a collection that guarantees that no duplicates are stored. Which two
interfaces provide that capability? (Choose Two)
A. Java.util.Map
B. Java.util.Set
C. Java.util.List
D. Java.util.StoredSet
E. Java.util.StoredMap
F. Java.util.Collection
Answer: B, D
QUESTION NO: 105
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.
Answer: A
QUESTION NO: 106
Exhibit:
1. public class X implements Runnable(
2. private int x;
3. private int y;
4.
5. public static void main(String[]args)
6. X that = new X();
7. (new Thread(that)).start();
8. (new Thread(that)).start();
9. )
10.
11. public void run() (
12. for (;;) (
13. x++;
14. y++;
15. System.out.printIn(“x=” + x + “, y = ” + y);
16. )
17. )
18. )
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”).
Answer: D
QUESTION NO: 107
Given:
1. public class SyncTest {
2. private int x;
3. private int y;
4. public synchronized void setX (int i) (x=1;)
5. public synchronized void setY (int i) (y=1;)
6. public synchronized void setXY(int 1)(set X(i); setY(i);)
7. public synchronized Boolean check() (return x !=y;)
8. )
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.
Answer: A
QUESTION NO: 108
Which is a method of the MouseMotionListener interface?
A. Public void mouseDragged(MouseEvent)
B. Public boolean mouseDragged(MouseEvent)
C. Public void mouseDragged(MouseMotionEvent)
D. Public boolean MouseDragged(MouseMotionEvent)
E. Public boolean mouseDragged(MouseMotionEvent)
Answer: A

视频学习

我考网版权与免责声明

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

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

最近更新

社区交流

考试问答