Services: Easiest way to pass Citrix exams.World No1. Real Level Exams iEngine & Pdf
Date: 2009-11-2 11:06 Author: passfourside Click: 16
310-065 braindumps Details on Pass4side
310-065 Exam
Sun Certified Programmer for the Java 2 Platform. SE6.0
Exam Number/Code : 310-065
Exam Name : Sun Certified Programmer for the Java 2 Platform. SE6.0
Questions and Answers : 207 Q&As
Update Time: 2009-11-03
If you prepare for the exam using our Pass4side testing engine, we guarantee your success in the first attempt. If you do not pass the SCJP 310-065 exam (ProCurve Secure WAN) on your first attempt we will give you a FULL REFUND of your purchasing fee AND send you another same value product for free.
Product Description Sun Certified Programmer for the Java Platform, Standard Edition 6
The Sun Certified Programmer for Java Platform, Standard Edition 6 certification exam is for programmers experienced using the Java programming language. Achieving this certification provides clear evidence that a programmer understands the basic syntax and structure of the Java programming language and can create Java technology applications that run on server and desktop systems using Java SE 6.
CX-310-065 Details
Delivered at: Authorized Worldwide Prometric Testing Centers
Prerequisites: None
Other exams/assignments required for this certification: None
Exam type: Multiple choice and drag and drop
Number of questions: 60
Pass score: 58.33 % (35 of 60)
Time limit: 180 minutes
Languages
English
Chinese (Traditional)
Chinese (Simplified)
French
German
Korean
Russian
Spanish (Neutral)
1. Given:
11. public static void main(String[] args) {
12. Object obj = new int[] { 1, 2, 3 };
13. int[] someArray = (int[])obj;
14. for (int i : someArray) System.out.print(i + " ");
15. }
What is the result?
A. 1 2 3
B. Compilation fails because of an error in line 12.
C. Compilation fails because of an error in line 13.
D. Compilation fails because of an error in line 14.
E. A ClassCastException is thrown at runtime.
Answer: A
2. Given:
31. // some code here
32. try {
33. // some code here
34. } catch (SomeException se) {
35. // some code here
36. } finally {
37. // some code here
38. }
Under which three circumstances will the code on line 37 be executed? (Choose three.)
A. The instance gets garbage collected.
B. The code on line 33 throws an exception.
C. The code on line 35 throws an exception.
D. The code on line 31 throws an exception.
E. The code on line 33 executes successfully.
Answer: BCE