310-065Big5 Exam

Sun Certified Programmer for the Java 2 Platform. SE6.0

  • Exam Number/Code : 310-065Big5
  • Exam Name : Sun Certified Programmer for the Java 2 Platform. SE6.0
  • Questions and Answers : 270 Q&As
  • Update Time: 2010-11-24
  • Testing Engine (SoftWare Version): $ 49.95
  • PDF (Printable Version) Price: $15.00
  •  

Note: After purchase, we will send questions within 24 hours.

Free 310-065Big5 Demo Download

hiexam offers free demo for SCJP 310-065Big5 exam (Sun Certified Programmer for the Java 2 Platform. SE6.0). You can check out the interface, question quality and usability of our practice exams before you decide to buy it. We are the only one site can offer demo for almost all products.

Download 310-065Big5 ExamTesting Engine

 

Exam Description

310-065Big5 exam is one of popular SUN Certification. Many candidates won't have confidence to get it. Now We guaranteed 310-065Big5 exam training is available in various formats to best suit your needs and learning style. Whether you are a hands-on tactile learner, visually or even a textbook training veteran, Hiexam has the 310-065Big5 resources that will enable you to pass your 310-065Big5 test with flying colors. As with SUN exams, the SCJP or 310-065Big5 exam is structured to stack or plug into other related courses. The combination of SUN courses builds the complete core knowledge base you need to meet your SUN certification requirements.

Why choose hiexam 310-065Big5 braindumps

Read it before. I want to ask you few question.

1. do you know Hiexam?

2. do you know why Only Hiexam can help you ?

3. do you know 310-065Big5 has changed ?

4.do you know you can get 100% guarantee?

OK. you can read this. if you can't find answer. you must contact us.

Quality and Value for the 310-065Big5 Exam
100% Guarantee to Pass Your 310-065Big5 Exam
Downloadable, Interactive 310-065Big5 Testing engines
Verified Answers Researched by Industry Experts
Drag and Drop questions as experienced in the Actual Exams
Practice Test Questions accompanied by exhibits
Our Practice Test Questions are backed by our 100% MONEY BACK GUARANTEE.

Hiexam provides the fastest and best way to train 310-065Big5 exam

* Truly interactive 310-065Big5 practice tests
* Create and take notes on any question
* Retake tests until you're satisfied
* You select the areas of the 310-065Big5 exam to cover
* Filter questions for a new practice test each time.
* Re-visit difficult questions

hiexam 310-065Big5 Exam Features

* High quality - High quality and valued for the 310-065Big5 Exam: 100% Guarantee to Pass Your 310-065Big5 exam and get your SCJP certification
* Authoritative - Authoritative study materials with complete details about 310-065Big5 exam
* Cheaper - Our Hiexam products are cheaper than any other website. With our completed SCJP resources, you will minimize your SCJP cost and be ready to pass your 310-065Big5 exam on Your First Try, 100% Money Back Guarantee included
* Free - Try free SCJP demo before you decide to buy it in http://www.hiexam.net
 
 
Exam : SUN 310-065Big5
Title : Sun Certified Programmer for the Java 2 Platform, SE 6.0


1. System.out.println(s);
6. }
7. }
將以下哪兩個程式碼片段個別插入第 3 行後,會輸出 4247?(請選擇兩個答案。)
A. String s = "123456789";
s = (s-"123").replace(1,3,"24") - "89";
B. StringBuffer s = new StringBuffer("123456789");
s.delete(0,3).replace(1,3,"24").delete(4,6);
C. StringBuffer s = new StringBuffer("123456789");
s.substring(3,6).delete(1,3).insert(1, "24");
D. StringBuilder s = new StringBuilder("123456789");
s.substring(3,6).delete(1,2).insert(1, "24");
E. StringBuilder s = new StringBuilder("123456789");
s.delete(0,3).delete(1,3).delete(2,5).insert(1, "24");
Answer: BE

2. 已知:
1. public class TestString3 {
2. public static void main(String[] args) {
3. // insert code here
5. System.out.println(s);
6. }
7. }
將以下哪兩個程式碼片段個別插入第 3 行後,會輸出 4247?(請選擇兩個答案。)
A. String s = "123456789";
s = (s-"123").replace(1,3,"24") - "89";
B. StringBuffer s = new StringBuffer("123456789");
s.delete(0,3).replace(1,3,"24").delete(4,6);
C. StringBuffer s = new StringBuffer("123456789");
s.substring(3,6).delete(1,3).insert(1, "24");
D. StringBuilder s = new StringBuilder("123456789");
s.substring(3,6).delete(1,2).insert(1, "24");
E. StringBuilder s = new StringBuilder("123456789");
s.delete(0,3).delete(1,3).delete(2,5).insert(1, "24");
Answer: BE

3. 已知:
35. String #name = "Jane Doe";
36. int $age = 24;
37. Double _height = 123.5;
38. double ~temp = 37.5;
以下敘述哪兩個正確?(請選擇兩個答案。)
A. 第 35 行無法編譯。
B. 第 36 行無法編譯。
C. 第 37 行無法編譯。
D. 第 38 行無法編譯。
Answer: AD

4. 已知:
5. class A {
6. void foo() throws Exception { throw new Exception(); }
7. }
8. class SubB2 extends A {
9. void foo() { System.out.println("B "); }
10. }
11. class Tester {
12. public static void main(String[] args) {
13. A a = new SubB2();
14. a.foo();
15. }
16. }
結果為何?
A. B
B. B,後面是 Exception。
C. 編譯會失敗,因為第 9 行有錯誤。
D. 編譯會失敗,因為第 14 行有錯誤。
E. 丟出 Exception,沒有其他輸出。
Answer: D

5. }
7. }
將以下哪兩個程式碼片段個別插入第 3 行後,會輸出 4247?(請選擇兩個答案。)
A. String s = "123456789";
s = (s-"123").replace(1,3,"24") - "89";
B. StringBuffer s = new StringBuffer("123456789");
s.delete(0,3).replace(1,3,"24").delete(4,6);
C. StringBuffer s = new StringBuffer("123456789");
s.substring(3,6).delete(1,3).insert(1, "24");
D. StringBuilder s = new StringBuilder("123456789");
s.substring(3,6).delete(1,2).insert(1, "24");
E. StringBuilder s = new StringBuilder("123456789");
s.delete(0,3).delete(1,3).delete(2,5).insert(1, "24");
Answer: BE

6. 已知:
11. public static Iterator reverse(List list) {
12. Collections.reverse(list);
13. return list.iterator();
14. }
15. public static void main(String[] args) {
16. List list = new ArrayList();
17. list.add("1"); list.add("2"); list.add("3");
18. for (Object obj: reverse(list))
19. System.out.print(obj + ", ");
20. }
結果為何?
A. 3, 2, 1,
B. 1, 2, 3,
C. 編譯失敗。
D. 程式碼順利執行,但沒有輸出。
E. 執行階段丟出異常。
Answer: C

http://www.hiexam.net The safer.easier way to get SCJP Certification.