310-036 Exam
SUN CERTIFIED JAVA 2 PROGRAMMER 1.4 UPGRADE
- Exam Number/Code : 310-036
- Exam Name : SUN CERTIFIED JAVA 2 PROGRAMMER 1.4 UPGRADE
- Questions and Answers : 66 Q&As
- Update Time: 2013-04-05
-
Price:
$ 119.00$ 69.00 -
310-036 Hard Copy (PDF)
-
310-036 Test Engine
Free 310-036 Demo Download
Test4pass offers free demo for SCJP 310-036 exam (SUN CERTIFIED JAVA 2 PROGRAMMER 1.4 UPGRADE). 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.
Exam Description
It is well known that 310-036 exam test is the hot exam of SUN certification. Test4pass offer you all the Q&A of the 310-036 real test . It is the examination of the perfect combination and it will help you pass 310-036 exam at the first time!
Why choose Test4pass 310-036 braindumps
Quality and Value for the 310-036 Exam
100% Guarantee to Pass Your 310-036 Exam
Downloadable, Interactive 310-036 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.
Test4pass 310-036 Exam Features
Quality and Value for the 310-036 Exam
Test4pass Practice Exams for SUN 310-036 are written to the highest standards of technical accuracy, using only certified subject matter experts and published authors for development.
100% Guarantee to Pass Your 310-036 Exam
If you prepare for the exam using our Test4pass testing engine, we guarantee your success in the first attempt. If you do not pass the SCJP 310-036 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.
SUN 310-036 Downloadable, Printable Exams (in PDF format)
Our Exam 310-036 Preparation Material provides you everything you will need to take your 310-036 Exam. The 310-036 Exam details are researched and produced by Professional Certification Experts who are constantly using industry experience to produce precise, and logical. You may get questions from different web sites or books, but logic is the key. Our Product will help you not only pass in the first try, but also save your valuable time.
310-036 Downloadable, Interactive Testing engines
We are all well aware that a major problem in the IT industry is that there is a lack of quality study materials. Our Exam Preparation Material provides you everything you will need to take a certification examination. Like actual certification exams, our Practice Tests are in multiple-choice (MCQs) Our SUN 310-036 Exam will provide you with free 310-036 dumps questions with verified answers that reflect the actual exam. These questions and answers provide you with the experience of taking the actual test. High quality and Value for the 310-036 Exam:100% Guarantee to Pass Your SCJP exam and get your SCJP Certification.
Hot KeyWords On 310-036 test
We collect some hot keywords about this exam:
Test4pass , Pass 4 Sure , Test in Side ,Pass Guide ,Test King 310-036 exam | 310-036 pdf exam | 310-036 braindumps | 310-036 study guides | 310-036 trainning materials | 310-036 simulations | 310-036 testing engine | 310-036 vce | 310-036 torrent | 310-036 dumps | free download 310-036 | 310-036 practice exam | 310-036 preparation files | 310-036 questions | 310-036 answers.
How to pass your 310-036 exam
You can search on Search Engine and Find Best IT Certification site: Test4pass.com - Find the Method to succeed 310-036 test,The safer.easier way to get SCJP Certification .
��
Exam : SUN 310-036
Title : SUN CERTIFIED JAVA 2 PROGRAMMER 1.4 UPGRADE
1. Which statement is true?
A. To call the join() method, a thread must own the lock of the current thread.
B. To call the sleep() method, a thread must own the lock of the current thread.
C. To call the yield() method, a thread must own the lock of the current thread.
D. To call the notify() method, a thread must own the lock of the current thread.
E. To call the notify() method, a thread must own the lock of the object on which the call is to be made.
Answer: E
2. int baz = bar + index;
15. System.out.println(" baz = " + baz);
What is the result?
A. baz = 0
B. baz = 1
C. baz = 2
D. Compilation fails.
E. An exception is thrown at runtime.
Answer: B
3. Given:
11. public static void main( String[] args ) {
12. Integer a = new Integer(10);
13. Integer b = new Integer(10);
14. Integer c = a;
15. int d = 10;
16. double e = 10.0;
17. }
Which three evaluate to true? (Choose three.)
A. (a == c)
B. (d == e)
C. (b == d)
D. (a == b)
E. (b == c)
F. (d == 10.0)
Answer: ABF
4. What happens when thread X executes a wait() method on object A, without owning object A's lock?
A. Compilation fails.
B. An exception is thrown.
C. The wait() method has no effect.
D. Thread X receives the lock immediately.
E. Object A moves the thread to the wait pool.
Answer: B
5. Click the Exhibit button.
What is the result?
A. 0
B. 3
C. Compilation fails.
D. An exception is thrown at runtime.
Answer: A
6. Click the Exhibit button.
What is the result?
A. x = 0
B. x = 1
C. x = 2
D. x = 3
E. x = 4
F. Compilation fails.
Answer: D
7. Click the Exhibit button.
What is the result?
A. Compilation fails because of errors at lines 7 and 8.
B. The program prints pairs of values for x and y that might not always be the same on the same line (for example, "x = 2, y = 1").
C. The program prints pairs of values for x and y that are always the same on the same line (for example, "x = 1, y = 1"). In addition, each value appears twice (for example, "x = 1, y = 1" followed by "x = 1, y = 1").
D. The program prints pairs of values for x and y that are always the same on the same line (for example, "x = 1, y = 1"). In addition, each value appears only once (for example, "x = 1, y = 1" followed by "x = 2, y = 2").
Answer: B
8. Given:
11. int index = 1;
12. int[] foo = new int[3];
13. int bar = foo[index];
14. int baz = bar + index;
15. System.out.println(" baz = " + baz);
What is the result?
A. baz = 0
B. baz = 1
C. baz = 2
D. Compilation fails.
E. An exception is thrown at runtime.
Answer: B
9. Click the Exhibit button.
Thread theThread has just executed line 8 and is in the wait state.
Which statement, if inserted at line 19, causes theThread to leave the wait state and execute line 9?
A. theThing.notify();
B. theThread.notify();
C. theThread.interrupt();
D. synchronized(theThing) { theThing.notify(); }
E. synchronized(theThread) { theThread.notify(); }
Answer: D
10. Click the Exhibit button.
What is the result?
A. j = 1
B. j = 10
C. Compilation fails.
D. The value of j cannot be determined.
Answer: D
11. Given:
21. int i = 1;
22. int j = i++;
23. if ((i == ++j) | (i++ == j)) {
24. i += j;
25. }
26. System.out.println("i = " + i);
What is the result?
A. i = 1
B. i = 2
C. i = 3
D. i = 4
E. i = 5
F. Compilation fails.
Answer: E
12. Which two are equal? (Choose two.)
A. 16 > 4
B. 16 / 2
C. 16 * 4
D. 16 >> 2
E. 16 / 2^2
F. 16 >>> 2
Answer: DF
13. Which statement is true?
A. If only one thread is blocked in the wait method of an object, and another thread executes the notify method on that same object, then the first thread immediately resumes execution.
B. If a thread is blocked in the wait method of an object, and another thread executes the notify method on the same object, it is still possible that the first thread might never resume execution.
C. If a thread is blocked in the wait method of an object, and another thread executes the notify method on the same object, then the first thread resumes execution as a direct and sole consequence of the notify call.
D. If two threads are blocked in the wait method of one object, and another thread executes the notify method on the same object, then the thread that executed the wait call first resumes execution as a direct and sole consequence of the notify call.
Answer: B
14. Given:
1. interface I0 {
2. public int method1(int x, int y);
3. public long method1(long x, long y);
4. }
Which compiles?
A. interface I1 extends I0 { }
B. interface I1 implements I0 { }
C. abstract class C1 extends I0 {
public int method1(int x, int y) { return 0; }
}
D. abstract class C1 implements I0 {
public int method1(int x, int y) { return 0; }
public short method1(long x, long y) { return 0; }
}
E. class C1 implements I0 {
public int method1(int x, int y) { return 0; }
public short method1(long x, long y) { return 0; }
}
Answer: A