当前位置: 代码迷 >> IT认证 >> 最新最全testpassport scjp 310-055题库解决办法
  详细解决方案

最新最全testpassport scjp 310-055题库解决办法

热度:10001   发布时间:2013-02-26 00:00:00.0
最新最全testpassport scjp 310-055题库
Testpassport  scjp  310-055  题库
Testpassport  SCJP 310-055题库由资深IT认证讲师和SCJP产品专家结合PROMETRIC或VUE的真实考试环境最新原题倾心打造.,题库覆盖了当前最新的真实考题,并且全部附有正确答案。
不多说,直接上题
认证编号: Sun Certified Programmer for the Java 2 Platform.SE 5.0
考题数量: 240 Q&As 
更新: Jan-15-2010
1.Which Man class properly represents the relationship "Man has a best friend who is a Dog"?
A.class Man extends Dog { }
B.class Man implements Dog { }
C.class Man { private BestFriend dog; }
D.class Man { private Dog bestFriend; }
E.class Man { private Dog; }
F.class Man { private BestFriend; }
Answer:D
2.Given: 1. package test; 2. 3. class Target { 4. public String name = "hello"; 5. } What can directly access
and change the value of the variable name?
A.any class
B.only the Target class
C.any class in the test package
D.any class that extends Target
Answer:C
3.Click the Task button.
Answer:
Green choice1---->Yellow Choice1
Green choice2---->Yellow Choice2
Green choice3---->Yellow Choice3
Green choice2---->Yellow Choice5
Green choice5---->Yellow Choice6
Green choice1---->Yellow Choice4
4.Given: 1. class ClassA { 2. public int numberOfInstances; 3. protected ClassA(int numberOfInstances)
{ 4. this.numberOfInstances = numberOfInstances; 5. } 6. } 7. public class ExtendedA extends ClassA { 8.
private ExtendedA(int numberOfInstances) { 9. super(numberOfInstances); 10. } 11. public static void
main(String[] args) { 12. ExtendedA ext = new ExtendedA(420); 13.
System.out.print(ext.numberOfInstances); 14. } 15. } Which statement is true?
A.420 is the output.
The safer , easier way to help you pass any IT exams.
3 / 12
B.An exception is thrown at runtime.
C.All constructors must be declared public.
D.Constructors CANNOT use the private modifier.
E.Constructors CANNOT use the protected modifier.
Answer:A
5.Given: 10. interface Jumper { public void jump(); } ... 20. class Animal {} ... 30. class Dog extends Animal
{ 31. Tail tail; 32. } ... 40. class Beagle extends Dog implements Jumper{ 41. public void jump() {} 42. } ...
50. class Cat implements Jumper{ 51. public void jump() {} 52. } Which three are true? (Choose three.)
A.Cat is-a Animal
B.Cat is-a Jumper
C.Dog is-a Animal
D.Dog is-a Jumper
E.Cat has-a Animal
F.Beagle has-a Tail
G.Beagle has-a Jumper
Answer:B C F
6.Given: 10: public class Hello { 11: String title; 12: int value; 13: public Hello() { 14: title += " World"; 15: }
  相关解决方案