全国软考程序员考试部分例题
例题6:
Which two statements are true for the class java.util.TreeSet? (Choose two)
A. The elements in the collection are ordered. Webjx.Com
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 collection are guaranteed to be synchronized
解答:A, C Webjx.Com
点评:TreeSet类实现了Set接口。Set的特点是其中的元素惟一,选项C正确。由于采用了树形存储方式,将元素有序地组织起来,所以选项A也正确。 Webjx.Com
例题7: 网页教学网
True or False: Readers have methods that can read and return floats and doubles.
A. Ture
B. False 网页教学网
解答:B 网页教学网
点评: Reader/Writer只处理Unicode字符的输入输出。float和double可以通过stream进行I/O.
网页教学网
例题8:
What does the following
paint() method draw?
1. public void paint(Graphics g) {
Webjx.Com
2. g.drawString(“Any question”, 10, 0);
3. }
A. The string “Any question?”, with its top-left corner at 10,0 网页教学网
B. A little squiggle coming down from the top of the component.
Webjx.Com
解答:B
点评:drawString(String str, int x, int y)方法是使用当前的颜色和字符,将str的内容显示出来,并且最左的字符的基线从(x,y)开始。在本题中,y=0,所以基线位于最顶端。我们只能看到下行字母的一部分,即字母‘y’、‘q’的下半部分。 网页教学网
例题9: Webjx.Com
What happens when you try to compile and run the following application? Choose all correct options.
1. public class Z {
2. public static void main(String[] args) {
3. new Z();
4. }
5. Webjx.Com
6. Z() {
7. Z alias1 = this;
8. Z alias2 = this;
9. synchronized(alias1) { 网页教学网
10. try {
11. alias2.wait();
12. System.out.println(“DONE WAITING”);
13. } Webjx.Com
14. catch (InterruptedException e) { Webjx.Com
15. System.out.println(“INTERR 网页教学网
UPTED”);
Webjx.Com
16. }
17. catch (Exception e) {
18. System.out.println(“OTHER EXCEPTION”);
19. }
网页教学网
20. finally { Webjx.Com
21. System.out.println
(“FINALLY”); Webjx.Com
22. }
23. }
24. System.out.println(“ALL DONE”);
25. }
26. }
A. The application compiles but doesn t print anything.
B. The application compiles and print “DONE WAITING” 网页教学网
C. The application compiles and print “FINALLY” Webjx.Com
D. The application compiles and print “ALL DONE”
E. The application compiles and print “INTERRUPTED”
解答:A
点评:在Java中,每一个对象都有锁。任何时候,该锁都至多由一个线程控制。由于alias1与alias2指向同一对象Z,在执行第11行前,线程拥有对象Z的锁。在执行完第11行以后,该线程释放了对象Z的锁,进入等待池。但此后没有线程调用对象Z的notify()和notifyAll()方法,所以该进程一直处于等待状态,没有输出。
例题10:
Which statement or statements are true about the code listed below? Choose three. 网页教学网
1. public class MyTextArea extends TextArea {
2. public MyTextArea(int nrows, int ncols) {
3. enableEvents(AWTEvent. Webjx.Com
TEXT_ 网页教学网
EVENT_MASK);
4. }
5. 网页教学网
6. public void processTextEvent
(TextEvent te) {
7. System.out.println(“Processing a text event.”);
8. }
9. }
A. The source code must appear in a file called MyTextArea.java 网页教学网
B. Between lines 2 and 3, a call should be made to super(nrows, ncols) so that the new component will have the correct size.
C. At line 6, the return type of processTextEvent() should be declared boolean, not void.
D. Between lines 7 and 8, the following code should appear: return true.
E. Between lines 7 and 8, the following code should appear: super.processTextEvent(te).
解答:A, B, E
Webjx.Com
点评:由于类是public,所以文件名必须与之对应,选项A正确。如果不在2、3行之间加上super(nrows,ncols)的话,则会调用无参数构建器TextArea(), 使nrows、ncols信息丢失,故选项B正确。在Java2中,所有的事件处理方法都不返回值,选项C、D错误。选项E正确,因为如果不加super.processTextEvent(te),注册的listener将不会被唤醒。 网页教学网





文章评论
共有 0 位网友发表了评论 查看完整内容