您现在的位置: 捷凌网安 >> 认证考试 >> JAVA认证 >> 正文
SCJP考试题310-025

作者:佚名 责任编辑:左决 点击数: 更新时间:2008-3-14 0:28:21

310-025
Leading the way in IT testing and certification tools,QUESTION NO: 92
Given:
1. String foo = “blue”;
2. Boolean[]bar = new Boolean [1];
3. if (bar[0]) {
4. foo = “green”;
5. }
What is the result?
A. Foo has the value of “”
B. Foo has the value of null.
C. Foo has the value of “blue”
D. Foo has the value of “green”
E. An exception is thrown.
F. The code will not compile.
Answer: F
QUESTION NO: 93
ExhibIT:
1. public class X {
2. public static void main (String[]args) {
3. String s1 = new String (“true”);
4. Boolean b1 = new Boolean (true);
5. if (s2.equals(b1)) {
6. System.out.printIn(“Equal”);
7. }
8. }
9. }
What is the result?
A. The program runs and prints nothing.
B. The program runs and prints “Equal”
C. An error at line 5 causes compilation to fail.
D. The program runs but aborts wITh an exception.
Answer: A
QUESTION NO: 94
Given:
1. public class Foo {
2. public static void main (String []args) {
3. int i = 1;
4. int j = i++;
5. if ((i>++j) && (i++ ==j)) {
6. i +=j;
7. }
8. }
9. }
What is the final value of i?
A. 1
B. 2
C. 3
D. 4
E. 5
Answer: B
QUESTION NO: 95
ExhibIT:
1. public class X {
2. public static void main (String[]args) {
3. string s = new string (“Hello”);
4. modify(s);
5. System.out.printIn(s);
6. }
7.
8. public static void modify (String s) {
9. s += “world!”;
10. }
11. }
What is the result?
E. The program runs and prints “Hello”
F. An error causes compilation to fail.
G. The program runs and prints “Hello world!”
H. The program runs but aborts wITh an exception.
Answer: A

QUESTION NO: 96
Which two are equivalent? (Choose Two)
A. 16>4
B. 16/2
C. 16*4
D. 16>>2
E. 16/2^2
F. 16>>>2
Answer: D, E
QUESTION NO: 97
ExhibIT:
1. public class X {
2. public static void main (String[]args) {
3. int [] a = new int [1]
4. modify(a);
5. System.out.printIn(a[0]);
6. }
7.
8. public static void modify (int[] a) {
9. a[0] ++;
10. }
11. }
What is the result?
A. The program runs and prints “0”
B. The program runs and prints “1”
C. The program runs but aborts wITh an exception.
D. An error “possible undefined variable” at line 4 causes compilation to fail.
E. An error “possible undefined variable” at line 9 causes compilation to fail.
Answer: B

QUESTION NO: 98
Given:
13. public class Foo {
14. public static void main (String [] args) {
15. StringBuffer a = new StringBuffer (“A”);
16. StringBuffer b = new StringBuffer (“B”);
17. operate (a,b);
18. system.out.printIn{a + “,” +b};
19. )
20. static void operate (StringBuffer x, StringBuffer y) {
21. y.append {x};
22. y = x;
23. )
24. }
What is the result?
A. The code compiles and prints “A,B”.
B. The code compiles and prints “A, BA”.
C. The code compiles and prints “AB, B”.
D. The code compiles and prints “AB, AB”.
E. The code compiles and prints “BA, BA”.
F. The code does not compile because “+” cannot be overloaded for stringBuffer.
Answer: B
QUESTION NO: 99
Given:
1. public class X {
2. public static void main (String[] args) {
3. byte b = 127;
4. byte c = 126;
5. byte d = b + c;
6. }
7. }
Which statement is true?
A. Compilation succeeds and d takes the value 253.
B. Line 5 contains an error that prevents compilation.
C. Line 5 throws an exception indicating “Out of range”
D. Line 3 and 4 contain error that prevent compilation.
E. The compilation succeeds and d takes the value of 1.
Answer: B
QUESTION NO: 100
Given:
1. public class WhileFoo {
2. public static void main (String []args) {
3. int x= 1, y = 6;
4. while (y--) {x--;}
5. system.out.printIn(“x=” + x “y =” + y);
6. }
7. }
What is the result?
A. The output is x = 6 y = 0
B. The output is x = 7 y = 0
C. The output is x = 6 y = -1
D. The output is x = 7 y = -1
E. Compilation will fail.
Answer: E
QUESTION NO: 101
Which statement is true?
A. The Error class is a untimeException.
B. No exceptions are subclasses of Error.
C. Any statement that may throw an Error must be enclosed in a try block.
D. Any statement that may throw an Exception must be enclosed in a try block.
E. Any statement that may thro a runtimeException must be enclosed in a try block.
Answer: D
QUESTION NO: 102
ExhibIT:
1. int I=1, j=0
2.
3. swITch(i) {
4. case 2:
5. j+=6;
6.
7. case 4:
8. j+=1;
9.
10. default:
11. j +=2;
12.
13. case 0:
14. j +=4;
15. }
16.
What is the value of j at line 16?
A. 0
B. 1
C. 2
D. 4
E. 6
Answer: AE
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

[1] [2] [3] [4] [5] [6] 下一页

  • 上一篇文章:

  • 下一篇文章:
  •  
    最进更新
    推荐文章新生代JAVA程序员的思想03-14
    普通文章java程序员面试必备的32个要03-14
    普通文章学习Acegi-认证(authenticat03-14
    普通文章SCJP 310-035考试心得03-14
    普通文章Java认证权威问答精华集03-14
    普通文章SCJP考试题310-02503-14
    推荐文章国内Java培训机构品牌化之路03-14
    普通文章Java认证SCJP考试四折优惠03-14
    普通文章SUN SCJP考试优惠活动03-14
    推荐文章2007年8月最新版CCNA注册方法03-07
     
    推荐文章
    推荐文章新生代JAVA程序员的思想03-14
    推荐文章国内Java培训机构品牌化之路03-14
    推荐文章2007年8月最新版CCNA注册方法03-07
    推荐文章MCSE认证考试全程心得02-28
    推荐文章SCSECA认证新增Solaris10安全02-21
    推荐文章认证介绍-2004年考Linux必备02-21
    推荐文章高手攻关心得:RHCE实战详细经02-21
    推荐文章中国Linux培训炙手可热 人才02-21
    推荐文章2003年4月三级PC技术试题分析02-19
    推荐文章Oracle数据库简介02-19
     
    热点文章 
    普通文章java程序员面试必备的32个要03-14
    普通文章学习Acegi-认证(authenticat03-14
    普通文章Java认证权威问答精华集03-14
    推荐文章国内Java培训机构品牌化之路03-14
    普通文章Java认证SCJP考试四折优惠03-14
    普通文章CCNA认证英文词汇中文解析--03-07
    普通文章微软开展2007“一次不过,免02-28
    普通文章微软Windows Server 2008认证02-28
    推荐文章MCSE认证考试全程心得02-28
    普通文章强档贡献:MCSE 2003最新学习02-28

    | 设为首页 | 加入收藏 | 联系站长 | 广告服务 | 友情链接 | 版权申明 | 网站地图 |

    在线交流 捷凌网安主群:51649627
    Copyright 2007-2008 © 捷凌网安. All rights reserved.
    备案序号:蜀ICP备08001812号