没有合适的资源?快使用搜索试试~ 我知道了~
首页java scjp认证考试题库
资源详情
资源评论
资源推荐

310-
035
QUESTION 2:
Which two cause a compiler error?
(Choose two)
A. float[] = new float(3);
B. float f2[] = new float[];
C. float[] f1 = new
float[3];
D. float f3[] = new
float[3];
E. float f5[] = { 1.0f, 2.0f, 2.0f };//初始化
F. float f4[] = new float[] { 1.0f. 2.0f. 3.0f}; // float f4[] = new float[]
{ 1.0f,2.0f,3.0f};
Answer: A, B
The F. statement is incorrect. The float numbers should be separated with
commas and not dots.
QUESTION 3:
Given:
11. int i =1,j =10;
12. do {
13. if(i++> --j) {
14. continue;
15. }

16. while (i <5);
17. System.out.println("i = " +i+ "and j = "+j); What is the result?
A. i = 6 and j = 5
B. i = 5 and j = 5
C. i = 6 and j = 5
D. i = 5 and j = 6
E. i = 6 and j = 6
Answer: D
QUESTION 5:
Given:
1. interface Animal {
2. void soundOff();
3. }
4.
5. class Elephant implements Animal {
6. public void soundOff() {
7. System.out.println("Trumpet");
8. }
9. }
10.
11. class Lion implements Animal {
12. public void soundOff() {
13. System.out.println("Roar");
14. }
15. }
16.
17. class Alpha1 {
18. static Animal get( String choice ) {
19. if ( choice.equalsIgnoreCase( "meat eater" )) {
20. return new Lion();
21. } else {
22. return new Elephant();
23. }
24. }
25. }
Which compiles?
A. new
Animal().soundOff(); B.
Elephant e = new
Alpha1();
C. Lion 1 = Alpha.get("meat eater");

D. new
Alpha1().get("veggie").soundOff();
Answer: D
QUESTION 6:
Which statement is true?
A. Memory is reclaimed by calling Runtime.gc().
B. Objects are not collected if they are accessible from
live threads.
C. Objects that have finalize() methods are never
garbage collected.
D. Objects that have finalize() methods always have their finalize() methods
called before the program ends.
E. An OutOfMemory error is only thrown if a single block of memory
cannot be found that is large enough for a particular requirement.
Answer: B
QUESTION 7:
Given:
1. class A {
Actualte s ts . com - The Po w er of Kno w ing

310-
035
2. A() { }
3. }
4.
5. class B extends A {
6. }
Which two statements are true? (Choose two)
A. Class B's constructor is public.
B. Class B's constructor has no arguments.
C. Class B's constructor includes a call to this().
D. Class B's constructor includes a call to
super(). Answer: B, D
QUESTION 8:
Given:
11. int i = 1,j = 10;
12. do {
13. if(i>j) {
14. break;
15. }
16. j--;
17. } while (++i <5);
18. System.out.println("i =" +i+" and j =
"+j); What is the result?
A. i = 6 and j = 5
B. i = 5 and j = 5
C. i = 6 and j = 4
D. i = 5 and j = 6
E. i = 6 and j = 6
Answer: D
310-
035
QUESTION 10:

You want a class to have access to members of another class in the same package.
Which
is the most restrictive access that accomplishes this objective?
A. public
B. private
C. protected
D. transient
E. default access
Answer: E
QUESTION 11:
Given:
11. int x = 3;
12. int y = 1;
13. if (x = y) {
14. System.out.println("x = " + x);
15. }
What is the result?
A. x = 1
B. x = 3
C. Compilation fails.
D. The code runs with no output.
E. An exception is thrown at
runtime.
Answer: C
QUESTION 13:
Given:
1. public interface Foo {
2. int k = 4;
3. }
Which three are equivalent to line 2? (Choose three)
A. final int k =
剩余63页未读,继续阅读






安全验证
文档复制为VIP权益,开通VIP直接复制

评论1