ImageVerifierCode 换一换
格式:DOCX , 页数:7 ,大小:17.34KB ,
资源ID:16528181      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bingdoc.com/d-16528181.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(全国计算机软件水平考试程序员考证例题.docx)为本站会员(b****7)主动上传,冰点文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰点文库(发送邮件至service@bingdoc.com或直接QQ联系客服),我们立即给予删除!

全国计算机软件水平考试程序员考证例题.docx

1、全国计算机软件水平考试程序员考证例题 全国计算机软件水平考试程序员考证例题例题2: How can you force garbage collection of an object? A. Garbage collection cannot be forced B. Call System.gc(). C. Call System.gc(), passing in a reference to the object to be garbage collected. D. Call Runtime.gc(). E. Set all references to the object to new

2、 values(null, for example). 解答:A 点评:在Java中垃圾收集是不能被强迫立即执行的。调用System.gc()或Runtime.gc()静态方法不能保证垃圾收集器的立即执行,因为,也许存在着更高优先级的线程。所以选项B、D不正确。选项C的错误在于,System.gc()方法是不接受参数的。选项E中的方法可以使对象在下次垃圾收集器运行时被收集。 例题3: Consider the following class: 1. class Test(int i) 2. void test(int i) 3. System.out.println(“I am an int.

3、”); 4. 5. void test(String s) 6. System.out.println(“I am a string.”); 7. 8. 9. public static void main(String args) 10. Test t=new Test(); 11. char ch=“y”; 12. t.test(ch); 13. 14. Which of the statements below is true?(Choose one.) A. Line 5 will not compile, because void methods cannot be overridd

4、en. B. Line 12 will not compile, because there is no version of test() that rakes a char argument. C. The code will compile but will throw an exception at line 12. D. The code will compile and produce the following output: I am an int. E. The code will compile and produce the following output: I am

5、a String. 解答:D 点评:在第12行,16位长的char型变量ch在编译时会自动转化为一个32位长的int型,并在运行时传给void test(int i)方法。 例题4: Which of the following lines of code will compile without error? A. int i=0; if (i) System.out.println(“Hi”); B. boolean b=true; boolean b2=true; if(b=b2) System.out.println(“So true”); C. int i=1; int j=2; i

6、f(i=1| j=2) System.out.println(“OK”); D. int i=1; int j=2; if (i=1 | j=2) System.out.println(“OKnterface Shape public interface Rectandle extends Shape C. public interface Colorable public class Shape implements Colorable D. public class Species public class Animalprivate Species species; E. interfa

7、ce 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 tw

8、o) 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 解答:

9、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 followingpaint() method draw?

10、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=

11、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

12、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 DON

13、E”); 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中,每一个对象都有锁。任何时候,

14、该锁都至多由一个线程控制。由于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 nro

15、ws, int ncols) 3. enableEvents(AWTEvent.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, nco

16、ls) 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 点评:由于类是public,所以文件名必须与之对应,选项A正确。如果不在2、3行之间加上super(nrows,ncols)的话,则会调用无参数构建器TextArea(), 使nrows、ncols信息丢失,故选项B正确。在Java2中,所有的事件处理方法都不返回值,选项C、D错误。选项E正确,因为如果不加super.processTextEvent(te),注册的listener将不会被唤醒。全国计算机软件水平考试程序员考证例题 相关内容:

copyright@ 2008-2023 冰点文库 网站版权所有

经营许可证编号:鄂ICP备19020893号-2