• 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

I have passed the SCJA with an 83%

 
Ranch Hand
Posts: 31
Android Firefox Browser Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
EDIT: Sorry, I posted this to the wrong forum.


I passed the SCJA today with an 83%.

Woo Hoo!

Anyway, the UML questions were not what I expected, in other words I should have studied other UML materials than what was in McKenzie's two books.

A topic that made me sit back in my chair was something along the following lines:

What is the result of running the following:

class Smudge{
public void main(){
System.out.print("I like to smudge.");
}
}


Does it compile? Yes, it does.

Does it output "I like to smudge"? No.

Does it throw an error at runtime? Yes. The error is "Exception in thread "main" java.lang.NoSuchMethodError: main", but the listed option falls into the line of "Does it error at runtime." The Java VM requires that the class you execute with it have a main method at which to begin execution of your application.

Otherwise, the rest of the exam was as expected. Again, I only used McKenzie's two books.
 
author and cow tipper
Posts: 5009
1
Hibernate Spring Tomcat Server
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Congratulations! I'm so glad my books could play a small part in your success.

Great Score!

-Cameron McKenzie
 
Todd Patrick
Ranch Hand
Posts: 31
Android Firefox Browser Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Cameron Wallace McKenzie wrote:Congratulations! I'm so glad my books could play a small part in your success.

Great Score!

-Cameron McKenzie



Thank you. It wasn't a small part by any means, the books are extremely helpful.
 
Ranch Hand
Posts: 466
1
IntelliJ IDE Oracle Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Congrats
 
Ranch Hand
Posts: 10198
3
Mac PPC Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Congrats!
 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Congrats Buddy . Give me suggestion to get high score....
 
Todd Patrick
Ranch Hand
Posts: 31
Android Firefox Browser Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

ramesh rocks wrote:Congrats Buddy . Give me suggestion to get high score....



McKenzie's two books are a must. I've posted a few corrections to the books in this forum as well.

I did not do well in the UML questions, I wish I had looked at different information on UML. The text based UML questions were somewhat easy to figure out by the process of elimination based on the knowledge gained in McKenzie's books, but the UML diagrams were tricky and beyond what was discussed in McKenzie's book.

In other words, take other people's advice in this forum and look at other UML documentation and/or guides.

For the code based questions:

  • Understand logical operators: || and &&
  • Understand the Unary and Postfix operators.
  • Loops - for, while, do
  •  
    Greenhorn
    Posts: 1
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    I also passed my SCJA exam yesterday (88%)

    Study material:
    - McKenzie's books (especially the mock questions were of a big help !)
    - http://www.scribd.com/doc/7214872/hfooassociateuml
     
    Greenhorn
    Posts: 18
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    My Heartiest Congratulations Todd!!
     
    Greenhorn
    Posts: 23
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    I have Cameron's two books and I have been studying off and on for a while. I also have UML Distilled which I use for work often, but it covers lots of topics like Use Cases and Sequence diagrams. While I use these a lot at work (I am a general-purpose architect), what specific UML diagrams are covered on the exam? i.e. what parts of UML Distilled should I use to supplement Cameron's books?

    Thanks,
    Tony

    From Amazon's book description:
    Topics covered: UML basics, analysis and design, outline development (software development process), inception, elaboration, managing risks, construction, transition, use case diagrams, class diagrams, interaction diagrams, collaborations, state diagrams, activity diagrams, physical diagrams, patterns, and refactoring basics.
     
    Bartender
    Posts: 2292
    3
    Eclipse IDE Spring Java
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    Congrats, champion!
     
    Do not threaten THIS beaver! Not even with this tiny ad:
    a bit of art, as a gift, the permaculture playing cards
    https://gardener-gift.com
    reply
      Bookmark Topic Watch Topic
    • New Topic