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

加入VIP,免费下载
 

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

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

下载须知

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

版权提示 | 免责声明

本文(SCJP Mock Exam 2.docx)为本站会员(b****6)主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(发送邮件至service@bdocx.com或直接QQ联系客服),我们立即给予删除!

SCJP Mock Exam 2.docx

1、SCJP Mock Exam 2Question 1)Which of the following are legal statements?1) float f=1/3; 2) int i=1/3; 3) float f=1.01; 4) double d=999d;Answer to Question 1) -Question 2)Which of the following are Java keywords?1) NULL 2) new 3) instanceOf 4) wendAnswer to Question 2) -Question 3)Which of the followi

2、ng are valid statements?1) System.out.println(1+1); 2) int i=2+2; 3) c4) byte b=255;Answer to Question 3) -Question 4)Which of the following statements are true?1) The garbage collection algorithm in Java is vendor implemented 2) The size of primitives is platform dependent 3) The default type for a

3、 numerical literal with decimal component is a float. 4) You can modify the value in an Instance of the Integer class with the setValue methodAnswer to Question 4) -Question 5)Which of the following are true statements?1) I/O in Java can only be performed using the Listener classes 2) The RandomAcce

4、ssFile class allows you to move directly to any point a file.3) The creation of a named instance of the File class creates a matching file in the underlying operating system only when the close method is called. 4) The characteristics of an instance of the File class such as the directory separator,

5、 depend on the current underlying operating systemAnswer to Question 5) -Question 6).Which of the following statements are true?1) The instanceof operator can be used to determine if a reference is an instance of a class, but not an interface. 2) The instanceof operator can be used to determine if a

6、 reference is an instance of a particular primitive wrapper class 3) The instanceof operator will only determine if a reference is an instance of a class immediately above in the hierarchy but no further up the inheritance chain 4) The instanceof operator can be used to determine if one reference is

7、 of the same class as another reference thusAnswer to Question 6) -Question 7)Which of the following statements are true?1) An interface can only contain method and not variables 2) Interfaces cannot have constructors3) A class may extend only one other class and implement only one interface 4) Inte

8、rfaces are the Java approach to addressing its lack of multiple inheritance, but require implementing classes to create the functionality of the Interfaces.Answer to Question 7) -Question 8)Which of the following are valid statements1) public class MyCalc extends Math 2) Math.max(s); 3) Math.round(9

9、.99,1); 4)Math.mod(4,10);Answer to Question 8) -Question 9)Which of the following are methods of the Runnable interface1) run 2) start 3) yield 4) stopAnswer to Question 9) -Question 10)Which of the following statements are true?1) A byte can represent between -128 to 127 2) A byte can represent bet

10、ween -127 to 128 3) A byte can represent between -256 to 256 4) A char can represent between -2x2 pow 16 2 x2 pow 16 - 1Answer to Question 10) -Question 11)What will happen when you attempt to compile and run the following code class Base public void Base() System.out.println(Base); public class In

11、extends Base public static void main(String argv) In i=new In(); 1) Compile time error Base is a keyword 2) Compilation and no output at runtime 3) Output of Base 4) Runtime error Base has no valid constructorAnswer to Question 11) -Question 12)You have a public class called myclass with the main me

12、thod defined as followspublic static void main(String parm) System.out.println(parm0); If you attempt to compile the class and run the program as followsjava myclass helloWhat will happen?1) Compile time error, main is not correctly defined 2) Run time error, main is not correctly defined 3) Compila

13、tion and output of java 4) Compilation and output of helloAnswer to Question 12) -Question 13) Which of the following statements are true?1) If a class has any abstract methods it must be declared abstract itself. 2) All methods in an abstract class must be declared as abstract 3) When applied to a

14、class, the final modifier means it cannot be sub-classed 4) transient and volatile are Java modifiersAnswer to Question 13) -Question 14)Which of the following are valid methods? 1) public static native void amethod() 2) public static void ametic native void amethod() 3) private protected void ameth

15、od() 4) static native void amethod();Answer to Question 14) -Question 15)Which of the following statements are true?1) Constructors cannot have a visibility modifier 2) Constructors can be marked public and protected, but not private 3) Constructors can only have a primitive return type 4) Construct

16、ors are not inherited Answer to Question 15) -Question 16)What will happen when you attempt to compile and run the following class?class BaseBase(int i)System.out.println(Base);class Severn extends Basepublic static void main(String argv)Severn s = new Severn();void Severn()System.out.println(Severn

17、);1) Compilation and output of the string Severn at runtime 2) Compile time error 3) Compilation and no output at runtime 4) Compilation and output of the string Base Answer to Question 16) -Question 17)Which of the following statements are true? 1) static methods do not have access to the implicit

18、variable called this 2) A static method may be called without creating an instance of its class3) A static method may not be overriden to be non-static 4) A static method may not be overloadedAnswer to question 17) -Question 18)Which of the following will compile without error? 1)char c=1; System.out.println(c1);2)Integer i=Integer(1); System.out.println(i1);3)int i=1; System.out.println(i1);4)int i=1; System.out.println(i2); 2) Performing an unsigned left shift () on

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1