CertGear - Certification Practice Tests /Exams For PHR, SPHR, GPHR, SCWCD, SCBCD, SCDJWS, SCJP, PMP Test Prep Products Built To Satisfy The Most Demanding Professional.
Certification Practice Tests For PHR, SPHR, GPHR, SCWCD, SCBCD, SCDJWS, SCJP, PMP
CertGear Products - Certification Practice Tests For PHR, SPHR, GPHR, SCWCD, SCBCD, SCDJWS, SCJP, PMPCertGear Products - Certification Practice Tests For PHR, SPHR, GPHR, SCWCD, SCBCD, SCDJWS, SCJP, PMPAbout CertGearCertGear Affiliates ProgramCertGear Technical SupportCertGear Product Downloads - Certification Practice Tests For PHR, SPHR, GPHR, SCWCD, SCBCD, SCDJWS, SCJP, PMP
Practice Test| PHR Practice Tests
SPHR Practice Tests
SCJP Practice Tests
SCWCD Practice Tests
SCBCD Practice Tests
SCDJWS Practice Tests
PMP Practice Test
GPHR Practice Tests

 
 SCJP Certification Practice Test  

Features Of CertGear's SCJP (CX-310-035) Certification Practice Test

  • Learn As You Go - Detailed explanations tell you not just the right answer, but why the right answer is right and the wrong answers are wrong. References for further study are also provided.

  • Customized Options - You decide the way you want to take the testing including:
    Timed, Live scoring, Randomization, Ask Incorrect, Show Answer, Select # of questions.

  • Ask Only The Questions You Got Wrong - This is a great feature. At the end of the exam, instead of being asked every question again, you can tell the test engine to only ask you questions that you got incorrect.

  • Randomization - The tests in our certification mode are dynamic, not fixed like some other practice tests are, so you'll get a new test every time. Each test is timed and the objectives are weighted the same as on the real exam.

  • History - The test engine keeps a history of all the exams and scores you have achieved on those tests. You can easily track your progress and help determine when you are ready to take the actual exam.

  • Categories - Many tests contain categories for you to selectively study topics. Additionally, you can see your grade in each category at the end of the exam.

  • Graphic Scoring - Graphical Breakdown Of Exam Results To Pinpoint Areas To Focus Your Study Effort..

  • Updates - Keep Up-To-Date With The Most Current And Most Accurate Exam Questions / Answers / Explanations With Complimentary Product Updates.

 


Free SCJP Certification Practice Questions:

What is the output of the following code?

1:public class test
2:{
3:      public static void main (String args[])
4:      {
5:      Thread t=  new Thread (new Runnable ()
6:        {
7:         public void run () {
8:           try
9:           {
10:            for (int i=1; i < 5; i++)
11:            {
12:              System.out.print (" " + i);
13:              wait (1000);
14:            }
15:          } catch (Exception ex) { ex.printStackTrace (); }
16:         }
17:       });
18:     t.start ();
19:     }
20:}
A) A compilation error will occur
B) 1 2 3 4 will be printed with a 1-second pause between each print out
C) A run-time error will be thrown
D) 1 2 3 4 will be printed with a 10-second pause between each print out
E) None of the choices are correct
  • [ANS: C]

  • A run-time error will be thrown. Specifically, the wait () method must be called from within a synchronized context.

    A thread CANNOT invoke a wait () method on a object unless it owns the lock on that object.

    Specifically, in this example, the code attempts to invoke wait () without a synchronized context. This will cause a run-time exception to be thrown by the JVM:

    java.lang.IllegalMonitorStateException: current thread not owner
    at java.lang.Object.wait(Native Method)
    at test$1.run(test.java:13)
    at java.lang.Thread.run(Thread.java:534)

    References: http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html#wait(long)



BACK    |    NEXT

 

For Additional SCJP Certification Practice Questions, Please Download A Free Copy Of Our SCJP Certification Exam Simulator (300+ Questions):

[SCJP Certification Practice Test]     [Buy Now | Download]


 

  HRCI Certifications :  PHR, SPHR, GPHR   |    PMI Certifications: PMP
Java Certifications :  SCWCD, SCBCD, SCJDWS, SCJP  | Security Certifications: CISSP, CISA