• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Passed SCJP with 98%

 
Ranch Hand
Posts: 195
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks to Kathy, Bert, the rest of the Javaranch staff, Marcus Green, Dan Chisholm, and all the folks on the SCJP forum.

I studied very intensively for over a month, possibly two. I read K&B, took all their chapter exams (mostly at Starbucks). I tried to answer lots of SCJP forum questions that were complex and therefore taught me new details. I took lots and lots of mock exams, including mastering the Rules Roundup. I took most of Dan Chisholm's 20 exams, which are much harder than real exam questions. I learned something new from my mistakes on every Chisholm exam I took. Marcus Green's exams were very helpful, and of course the exams that came with K&B were great because they teach you the format of the real exam. I also took various other mock exams, some easy, some very hard.

I made sure I was well rested, well fed, hydrated, and had used the bathroom before my real exam started.

On my first pass through the exam, I answered every question, and checked the Mark button for every question that I had any hesitation about at all, which was about 20 of them. The first pass took about 1 hour. Then I used the second hour to go through all the questions I had marked, gradually removing the Mark condition from each one as I convinced myself that I had the right answer. (Started getting hungry at this point, but pressed on.)

On one question I simply couldn't decide between 2 answers because I just didn't know whether thread priorities were guaranteed to dictate execution order, or whether they were merely likely to guide execution order. I guessed that they were not guaranteed, which must have been wrong, since my score report says my one wrong answer was a thread question.

After the second pass, where I removed the Marks, I did one very quick pass just to count the answers I'd selected on each question, since I had a bad habit of occasionally giving the wrong number of answers on mock exam.

With about 30 minutes left, I figured I was finished, but there was no harm in proofreading a little, so I did one last pass where I skimmed the questions and answers to see if I'd catch anything new now that I was very familiar with the test. I finished that pass with 6 minutes to go, and ended the test.
 
Ranch Hand
Posts: 231
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
congrats buddy..gr8 going.
 
Ranch Hand
Posts: 431
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Congratulations!!!

Well Done!!!
 
Ranch Hand
Posts: 333
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Welcome to the 98 club, cheers!
 
Bartender
Posts: 3904
43
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Congratulations !!!
 
Ranch Hand
Posts: 1026
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Congrats
 
Ranch Hand
Posts: 116
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Congrats~
 
Ranch Hand
Posts: 1011
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
congratulations and enjoy!
 
Ranch Hand
Posts: 577
Tomcat Server Notepad Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Congratulations
 
Ranch Hand
Posts: 7729
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Congratulations Joe! Regarding your thread problem, this is what the Sun Java tutorial says:

Rule of thumb: At any given time, the highest priority thread is running. However, this is not guaranteed. The thread scheduler may choose to run a lower priority thread to avoid starvation. For this reason, use thread priority only to affect scheduling policy for efficiency purposes. Do not rely on it for algorithm correctness.

My italics.

And the Java 5.0 vm documentation says:

The Thread.setPriority and Thread.yield methods are advisory. They constitute hints from the application to the JVM. Properly written, robust, platform-independent code can use setPriority() and yield() to optimize the performance of the application, but should not depend on these attributes for correctness. Likewise, no assumptions should be made about the order in which threads are granted ownership of a monitor or the order in which threads wake in response to the notify or notifyAll method. An excellent reference for these topics is Chapter 9, "Threads," in Joshua Bloch's book Effective Java Programming Language Guide.


[ June 10, 2005: Message edited by: Barry Gaunt ]
 
Ranch Hand
Posts: 547
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Congratz !!!
 
Ranch Hand
Posts: 50
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
98 is some score !!!
congrats
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic