SUN認証試験の目的はひとまとまりの完備している知識の体系を広めます。だから、最近ますます多くの国際認証試験は最も実質的な方法に向かって改善していきます。たくさん認証試験の内容は理論核心を主として、グローバル化の発展にしたがって、310-055試験内容はもっと実質的なって、理論の基礎の上でもうただ重視するだけでありません。国際認証試験は実質になるのも共通の成り行きです。
testpassport試験問題集はIT技術者向きの模擬問題集で、問題と答えを含みます。Testpassport問題集はIT専門家グループによって作り上げられて、310-055問題と答えを暗記しただけで、100%合格することができますtestpassport 310-055(Sun Certified Programmer for the Java 2 Platform.SE 5.0)認定試験問題集は二つフォーム(pdfとソフト版)を提供して、pdf形式はプリントだけでなく、いくつのパソコンで使うことができます。ソフト版は実際の試験雰囲気を模擬したものです。
SUN SCJPテキストブックは一年で無料更新サービスを提供して、認定合格に役に立ってます。もし、試験内容を変したら、早速お客様に知らせます。そして、更新版があったら、お客様に送ります。
testpassportの310-055シミュレーション問題の対策は単項の選択問題、多肢選択問題、ドラッグ&ドロップ、実験問題及び穴埋め問題などの試験フォームを含んでいます。
310-055過去の問題集は無料デモを見れば、こちらをクリックしてください。
以下は部分の問題と答えです。
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.
http___pdftestpassport7
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.
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: }
16: public Hello(int value) { 17: this.value = value; 18: title = “Hello”; 19: Hello(); 20: } 21: } and: 30: Hello c
= new Hello(5); 31: System.out.println(c.title); What is the result?
A.Hello
B.Hello World
C.Compilation fails.
D.Hello World 5
E.The code runs with no output.
F.An exception is thrown at runtime.
Answer:C
7.Given: 10. interface A { public int getValue(); } 11. class B implements A { 12. public int getValue()
{ return 1; } 13. } 14. class C extends B { 15. // insert code here 16. } Which three code fragments, inserted
individually at line 15, make use of polymorphism? (Choose three.)
A.public void add(C c) { c.getValue(); }
B.public void add(B b) { b.getValue(); }
C.public void add(A a) { a.getValue(); }
D.public void add(A a, B b) { a.getValue(); }
E.public void add(C c1, C c2) { c1.getValue(); }
Answer:B C D