http://www.killtest.jp/MCITP/70-432.asp はMicrosoft会社に主催されました、Microsoft会社は計算機技術者がソフト商品を使う能力をテストして、彼らの開発と応用方面の技術レベルを高めます。この認証は持ち主が関する領域での仕事能力を証明して、高い権威性が持ちます

70-432 問題皆と分かち合います
1.You work in a company which is named Wiikigo Corp. The company uses SQL Server 2008. You are the
administrator of the company database. Now you are in charge of a SQL Server 2008 instance. There is a
computer which hosts several applications in your company. The instance runs on the computer. A job
named DiliveryList is created by you. This job requires a file to be written to a file server. But because the
job cannot access the file server, it fails to run. You intend to configure the SQL Server Agent service so
that only the SQL Server Agent service has read and write access to the file server. Which account type
should you use?
A.You should use local Service account
B.You should use network Service account
C.You should use domain account
D.You should use local System account
Answer:C
2.You work in a company which is named Wiikigo Corp. The company uses SQL Server 2008. You are the
administrator of the company database. Now you are in charge of a SQL Server 2008 instance. There is a
database named DB1 in the instance. On DB1, quite few logged operations are performed. Now
according to the requirement of the company CIO, you must validate that the database can be restored to
a specific point in time. So what action should you perform to achieve this goal?
A.You should verify that the simple recovery model is used by the database
B.You should verify that the full recovery model is used by the database.
C.You should verify that the checksum page verify option is used by the database
D.You should verify that the bulk-logged recovery model is used by the database
Answer:B
3.You work in a company which is named Wiikigo Corp. The company uses SQL Server 2008. You are the
administrator of the company database. Now you are in charge of a SQL Server 2008 instance. There is a
SQL Server 7.0 database. You upgrade the database to the SQL Server instance. According to the
company requirement, you must make sure that suspect pages can be detected in the database. So what
action should you perform to achieve this goal?
A.For the database, you should turn on the TRUSTWORTHY database option
B.For the database, the PAGE_VERIFY database option should be set to CHECKSUM
C.For the database, the database compatibility level option should be set to 10.
D.For the model database, the PAGE_VERIFY database option should be set to
TORN_PAGE_DETECTION.
Answer:B
4.You work in a company which is named Wiikigo Corp. The company uses SQL Server 2008. You are the
administrator of the company database. Now you are in charge of a SQL Server 2008 instance. You
configure the SQL Server instance to use the -T1222 and -T1204 trace flags during startup. You must
make sure that your failure recovery plan performs backup of the use of the trace flags. So what action
should you perform to achieve this goal?
A.You should backup the master database
B.You should backup the default.trc file
C.You should backup the SQL Server registry hive.
D.You should backup the resource database
Answer:C

SunはUNIX領域でずっと技術と市場占有率のリーダである;近年来Java技術を推しだして、業界の標準になリます、だからSun会社が行う認証試験は絶対JavaとUNIX情報界の公認する標準になります
310-055 の問題皆と分かち合います
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
8.Given: 20. public class CreditCard { 21. 22. private String cardID; 23. private Integer limit; 24. public
String ownerName; 25. 26. public void setCardInformation(String cardID, 27. String ownerName, 28.
Integer limit) { 29. this.cardID = cardID; 30. this.ownerName = ownerName; 31. this.limit = limit; 32. } 33. }
Which statement is true?
A.The class is fully encapsulated.
B.The code demonstrates polymorphism.
C.The ownerName variable breaks encapsulation.
D.The cardID and limit variables break polymorphism.
E.The setCardInformation method breaks encapsulation.
Answer:C
9.Given: 1. class Super { 2. private int a; 3. protected Super(int a) { this.a = a; } 4. } ... 11. class Sub
extends Super { 12. public Sub(int a) { super(a); } 13. public Sub() { this.a = 5; } 14. } Which two,
independently, will allow Sub to compile? (Choose two.)
A.Change line 2 to: public int a;
B.Change line 2 to: protected int a;
C.Change line 13 to: public Sub() { this(5); }
D.Change line 13 to: public Sub() { super(5); }
E.Change line 13 to: public Sub() { super(a); }
Answer:C D
10.Given: 11. class ClassA {} 12. class ClassB extends ClassA {} 13. class ClassC extends ClassA {} and:
21. ClassA p0 = new ClassA(); 22. ClassB p1 = new ClassB(); 23. ClassC p2 = new ClassC(); 24. ClassA
p3 = new ClassB(); 25. ClassA p4 = new ClassC(); Which three are valid? (Choose three.)
A.p0 = p1;
B.p1 = p2;
C.p2 = p4;
D.p2 = (ClassC)p1;
E.p1 = (ClassB)p3;
F.p2 = (ClassC)p4;
Answer:A E F

CompTIA A+ は、PC運用?管理を実施する上で必要とされる知識やスキル、現場対応能力?業務遂行のための考え方を評価する認定資格です。ソフトウェアとハードウェアの両面からのITスキルに加え、セキュリティやコミュニケーション等の実務能力を証明します。CompTIA A+認証を持って、仕事の発展や転職にはとても必要である。これから220-602 問題を提供して皆と分かち合います。
1. A technician installs a SATA controller card and moves the hard drive cable from the system board to
the SATA controller. The system POSTs and the controller BIOS recognizes the hard drive but does not
boot to the hard drive and start Windows. Which of the following is the MOST likely cause of the problem?
A. Windows cannot be booted from a controller card.
B. The hard drive must have Windows reinstalled because a new controller card was installed.
C. The SATA controller card was not set as a boot device in the computer BIOS.
D. The new controller must have the correct jumper settings for Windows mode.
Answer: C
2. Which of the following IEEE standards applies to parallel data transmission?
A. IEEE 1394
B. IEEE 802.3
C. IEEE 802.11
D. IEEE 1284
Answer: D
3. After right-clicking on an applications shortcut icon and selecting Properties, which of the following will
identify the location of the application?
A. Start In
B. Location
C. Shortcut key
D. Run
Answer: A
4. Making data appear to come from somewhere other than the originating point is known as:
A. social engineering.
B. spoofing.
C. hacking.
D. cracking.
Answer: B
5. Which of the following can be used to prepare a disk image for duplication?
A. Copy
B. sysprep
C. xcopy
D. Shadow copy
Answer: B
6. Which of the following should a technician do FIRST to troubleshoot a users network connectivity
problem?
A. Run TRACERT from the users workstation.
B. Start with the Last Known Good Configuration and reboot the computer.
C. Replace the network interface card (NIC).
D. PING the users workstation.
Answer: D