首页>计算机>软件水平考试>模拟试题>正文
全国软件水平程序员考试部分例题

www.zige365.com 2008-11-6 21:40:37 点击:发送给好友 和学友门交流一下 收藏到我的会员中心
例题5: 
         
         Which two demonstrate a "has a" relationship? (Choose two) 
 
         A. public interface Person { } 
 
         public class Employee extends Person{ } 
         B. public interface Shape { } 
 
         public interface Rectandle extends Shape { } 
 
         C. public interface Colorable { } 
 
         public class Shape implements Colorable 
 
         
 
         { } 
 
         D. public class Species{ } 
 
         public class Animal{private Species species;} 
 
         E. interface Component{ } 
 
         class Container implements Component{ 
 
         private Component[] children; 
 
         
 
         } 
 
         解答:D, E 
 
         点评: 在Java中代码重用有两种可能的方式,即组合(“has a”关系)和继承(“is a”关系)。“has 
      a”关系是通过定义类的属性的方式实现的;而“is a”关系是通过类继承实现的。本例中选项A、B、C体现了“is a”关系;选项D、E体现了“has 
      a”关系。 
         例题6: 
 
         Which two statements are true for the class java.util.TreeSet? (Choose 
      two) 
 
         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 collection are guaranteed to be synchronized 
 
         解答:A, C 
 
         
      点评:TreeSet类实现了Set接口。Set的特点是其中的元素惟一,选项C正确。由于采用了树形存储方式,将元素有序地组织起来,所以选项A也正确。 
 
         例题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) { 
 
         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. 
 
    解答:B 
 
         点评:drawString(String str, int x, int 
      y)方法是使用当前的颜色和字符,将str的内容显示出来,并且最左的字符的基线从(x,y)开始。在本题中,y=0,所以基线位于最顶端。我们只能看到下行字母的一部分,即字母‘y’、‘q’的下半部分。 
 
 
         例题9: 
 
         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. 
 
         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. } 
 
         14. catch (InterruptedException e) { 
 
         15. System.out.println(“INTERR 
 
         UPTED”); 
 
         16. } 
 
         17. catch (Exception e) { 
 
         18. System.out.println(“OTHER EXCEPTION”); 
 
         19. } 
 
         20. finally { 
 
         21. System.out.println 
 
         (“FINALLY”); 
 
         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” 
 
         D. The application compiles and print “ALL DONE” 
 
         E. The application compiles and print “INTERRUPTED” 
         
 
         解答:A 
 
         
   点评:在Java中,每一个对象都有锁。任何时候,该锁都至多由一个线程控制。由lias1与alias2指向同一对象Z,在执行第11行前,线程拥有对象Z的锁。在执行完第11行以后,该线程释放了对象Z的锁,进入等待池。但此后没有线程调用对象Z的notify()和notifyAll()方法,所以该进程一直处于等待状态,没有输出。

本新闻共3页,当前在第2页  1  2  3  

我要投稿 新闻来源: 编辑: 作者:
相关新闻
08年11月软考英语考前练习试题及答案汇总
08年11月软考英语考前练习试题及翻译(1)
08年11月软考英语考前练习及解析(18)
08年11月软考英语考前练习试题及解析(17)
08年11月软考英语考前练习试题及解析(16)
08年11月软考英语考前练习试题及解析(15)