Errors in SCJP exam

Hi,
I am sitting my SCJP 1.5 exam tomorrow and just going through the Sun sample exam that I bought on-line from Sun.
In the first exam (you get 3), question 50 states that...
Is-a relationships must use inheritance
However, the instanceof test will also return true for an implementation of an Interface. Am I wrong or is this a mistake in the exam papers? I searched through the forum and this doesn't seem to be the first such error, which leads me to question if the sample papers are incorrect, is there any way of knowing if there are any mistakes in the actual exam?
Thanks!
Alan K.
Ps: The sample exams cost nearly twice the price from the European based website than the USA website.... not impressed!!

At the risk of suffering the ridicule of JWenting, here are 3 other - shameful - mistakes that I noticed on the 3rd practice exam:
Question 27 has BufferWriter 3 times instead of BufferedWriter. For all of the idiotic 'gotcha' questions that the exam throws at you - and considering that Sun charges $75 for these practice exams, this should have been caught.
Question 29 is even worse:
Given:
1. class Dog implements Serializable {
2.   Collar c = new Collar();
3. }
4. class Collar implements Serializable {
5.   CollarPart cp1 = new CollarPart("handle");
6.   CollarPart cp2 = new CollarPart("clip");
7. }
8.
9. class CollarPart implements Serializable { }When an instance of Dog is serialized, how many objects are serialized?
My thoughts: Although they claim 4 should be serialzied, the answer should be Zero, because the code won't compile. You can't serialize a Dog instance, because you can't serialize a Collar instance, because cp1 and cp2 are instantiated with a non-existent constructor.
And, by far the worst of all is Question 58:
1. import java.util.*;
2. class DumpArray {
3.   public static void main(String [] args) {
4.     int [] a = {7,9,8};
5.     int [][] aa = {{1,2,3}, {6,5,4}};
6.     int [][][] aaa = {{{1,2}, {3,4}}, {{5,6},{7,8}}};
7.
8.     System.out.println(Arrays.deepToString(a));
9.     System.out.println(Arrays.deepToString(aa));
10.     System.out.println(Arrays.deepToString(aaa));
11.   }
12. }Which invocation (or invocations) of deepToString will compile?
My thoughts: The answer claims that only lines 9 and 10 will compile b/c deepToString can be used only with multidimensional arrays. Wrong!!! There's no way to sugarcoat it- that is just totally wrong.
So, does the real test have problems like this? I'm annoyed.

Similar Messages

  • Code evaluation on the SCJP exam

    I've been studying for the SCJP exam, and I'm just about ready to take the practice exam. Just for fun, I've been tinkering around with some of the free practice exams online. For sure, some seem better than others. But messing with them has made me wonder about two things:
    1. Approximately what percentage of the real exam is code evaluation (i.e. here's the code > does it compile > does it throw a runtime error > what is the output )?
    2. On all of the practice exams, you conceivably could copy the code into a text editor, compile it and execute it to determine the output. Surely on the real exam, they have guarded against this by painting the code into an applet or something to prevent copying/pasting, right? Or do they just figure that the time penalty of copying/pasting will weed out those who don't know their stuff?
    Thanks for your answers.
    Best,
    Tom

    thomasaaron wrote:
    1. Approximately what percentage of the real exam is code evaluation (i.e. here's the code > does it compile > does it throw a runtime error > what is the output )?
    impossible to say. The questions are selected at random from a pool of all available questions (though I suspect there's a mechanism in there to guarantee some sort of reasonable mix between the exam topics).
    In theory they could all be of the same type, or none.
    2. On all of the practice exams, you conceivably could copy the code into a text editor, compile it and execute it to determine the output. Surely on the real exam, they have guarded against this by painting the code into an applet or something to prevent copying/pasting, right? Or do they just figure that the time penalty of copying/pasting will weed out those who don't know their stuff?
    The exam computer is designed such that you can't switch applications.
    You have the text of the question, the space to select your answer, and some buttons (next, previous, ready, etc.).
    You have nothing at your disposal apart from your brain, a pen or pencil, and a few sheets of blank paper (and the pen and paper are provided to you and have to be turned in when you leave, it's your responsibility to provide the brain).

  • What kinds of book do I need for the SCJP Exam...

    Hi all..
    Can you tell me the referance book for the SCJP Exam..
    I mean book name, author name etc...
    with regards..
    PMH

    http://www.amazon.com/exec/obidos/tg/listmania/list-browse/-/2H6FT75FPC2YU/102-7504852-4997715

  • How to prepare for SCJP exam

    Hi All,
    I am venkat, I know the fundamental and some extent of java. I am planning to write scjp exam. Can anyone guide me, how to prepare for the exam and what are the key concepts to work and suggest me books for my preparation. Thanq one and all.

    Hi All,
    I am venkat, I know the fundamental and
    some extent of java. I am planning to write scjp
    exam. Can anyone guide me, how to prepare for the
    exam and what are the key concepts to work and
    suggest me books for my preparation. Thanq one and
    all.http://www.javaranch.com/certfaq.jsp

  • Can anyone give the name of the center to write SCJP Exam available in visa

    can anyone give the name of the center and its location to write SCJP Exam available in visakhapatnam city, Andhra pradesh,INDIA ?
    Thankq

    Hi Suryakiran,
    You can contact NIIT or SEED infotech or Aptech computer institute or any other computer institute over there having "prometric testing center facility" ....
    It's simple ....
    fees are around Rs.4500 to Rs.6000 /-
    I think this info. will help you.
    Cheers---
    Akshay_L

  • New price of scjp exam

    Hi All,
    I have pay for scjp exam.but today, the exam center call me and said new price of the exam is *$300* is it true. can any one tell me. plzzz help
    Thank you

    you have to remember that the price is calculated in local currency, and with changing exchange rates that can mean that the dollar price fluctuates (and with the rapidly sinking dollar, that at the moment means the dollar price will go up even if the local price stays the same).
    For example the price here is 250 Euro (inc taxes), and has been for years.
    But when that price was set the Euro was $1, now it's almost $1.50.
    So in dollars the price has gone up from $250 to (by now) about $370.

  • SCJP exam related question

    Does the exam expect you to know all the subclasses of EXCEPTION and RUNTIMEEXCEPTION or is ir more likely to just test your knowledge on which have to be dealt with in order to compile?
    I am not fimiliar with all the subclasses and this is why I ask. A question that states a mthod throws CannotUndoException may catch me offgaurd.
    Another question is....
    If you have a method and declare it to throw a runtime exception. Does that mean that if you call on that method that you must deal with it? IOW does it become a checked excption or will Runtime Exception never be checked by the compiler?

    jwenting wrote:
    exhort wrote:
    To maintain sanity in other forums SCJP has been confined to its own forum,
    This question (apart from the totally undescriptive title) has no relation whatsoever with the SCJP exam.
    But then, neither does the majority of what's posted in that forum...Well, it seems to me the OP is asking about what to expect from the SCJP.
    Do you mean that nothing is to be expected from the SCJP so to ask about that is an unrelated question?

  • Number of times attending SCJP exam..

    Helo All,
    I am new to this forum so please help me . How many times I can attend the SCJP exam . Is there any limitation in that ???
    Thanks in advance..........

    Sun's Certification Retake Rules:1. There is a 1-week minimum wait period before retaking a failed exam.
    2. You can retake the same exam a maximum of three (3) times in one calendar year.
    3. After the third failed attempt within one calendar year, you must obtain written permission from Sun prior to attempting a fourth time by sending an email request to [email protected]
    4. An exam can not be retaken once it has been passed.
    http://www.sun.com/training/certification/faq/

  • SCJP exam pattern

    hi,
    please provide the SCJP exam pattern details or some links to get it
    it will help me a lot
    thank you,
    RaghuG

    raghuG wrote:
    hi,
    please provide the SCJP exam pattern details or some links to get it
    it will help me a lot[http://www.sun.com/training/certification/java/scjp.xml]
    ~

  • About SCJP Exam

    Hi,
    I want to take SCJP exam, can any one know the processes to be done for that in india perticularly in bangalore, and also the references for the exam.

    ANOTHER RESURRECTION !!!
    Must be the end times !!!!!!!
                             .;1bW@MMMMMM@W9ti.
                         i9MMMMMMMMMMMMMMMMMMMMMMM@o.
                     .zMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM7
                   tMMMMMMMMMWt,             .i2@MMMMMMMMM;
                 QMMMMMMM6.                        iWMMMMMMMU
                $MMMMMM2                               .WMMMMMMA
              UMMMMMM:                                    XMMMMMMY
            ,MMMMMM,                                        cMMMMMM
           2MMMMMc                                            ZMMMMM;
          @MMMM#                                               .MMMMMZ
         MMMMMo                                                  #MMMMB
        MMMMMv           i$MMM#v                t@MMM0.           8MMMMQ
       WMMMMv           MMMMMMMMM.            cMMMMMMMM@           8MMMMt
      iMMMMI           MMMMMMMMMMM           .MMMMMMMMMM$           @MMMM
      MMMMM            MMMMMMMMMMM,          1MMMMMMMMMMM            MMMMM
    7MMMM.            MMMMMMMMMMM            MMMMMMMMMMB            vMMMM.
    MMMM@              #MMMMMMMM             .MMMMMMMMQ              MMMM@
    MMMM;                1W#Wo.                .6B#0Y                IMMMM
    ;MMMM                                                             .MMMM.
    6MMMM                                                              MMMMc
    0MMMM                                                              MMMM1
    EMMMM                                                              MMMM1
    ZMMMM          MMM                                   .MM@          MMMMc
    vMMMM          MMMn                                  #MMM          MMMM,
    MMMMi         .MMM                                 .MMM.         CMMMM
    MMMM@          MMMM                                MMMM          MMMMM
    1MMMM           MMM@                              MMMM          .MMMMi
      MMMMM          oMMMM                           ,MMMMX          MMMMM
      cMMMM7          0MMMMb                       .$MMMMU          8MMMM.
       @MMMM.          zMMMMM#i                  cMMMMMM7          cMMMMZ
        MMMMM.          .MMMMMMMMWti..    ..;o#MMMMMMMM           cMMMM@
         MMMMMv           7MMMMMMMMMMMMMMMMMMMMMMMMMMi           IMMMM@
          MMMMMQ            ,#MMMMMMMMMMMMMMMMMMMME.            @MMMMB
            WMMMMM:             .XWMMMMMMMMMMMM0c              YMMMMM1
             ;MMMMM@                                         ,MMMMMM.
               #MMMMM#.                                    :MMMMMMz
                .MMMMMMMc                                1MMMMMMW
                  .MMMMMMM@Y                         .1MMMMMMMQ
                     0MMMMMMMM@zi               .;6MMMMMMMMM1
                       :#MMMMMMMMMMMMMMM@@MMMMMMMMMMMMMMM6.
                           t@MMMMMMMMMMMMMMMMMMMMMMMMQ;
                               .;UW@MMMMMMMMMM@01:

  • Re: Need Help In SCJP Exam.

    Everything can be handled by Sun's SCJP site, which I found as the first entry in Google under "SCJP".
    1) http://www.sun.com/training/certification/java/scjp.xml
    2) Any promotions are at that page, unless you have something special with a partnership or something.
    3) http://www.amazon.com, search for SCJP
    4) http://www.sun.com/training/certification/java/scjp.xml
    5) http://www.sun.com/training/certification/java/scjp.xml
    6) There's a lot of info on the Sun site and around the web by searching for SCJP, but if you have any specific questions, feel free to ask here.

    Hey Thanks
    i would like to know one question's answer.
    as i heard Sun Exam voucher is the same for all the exams (SCJP,SCWCD,SCBCD,SCDJWS,SCJA,SCEA-Part1,SCMAD).
    so how do i will get for scjp 1.6 exam voucher i need to ask in examination center or while scheduling i can schedule for SCJP 1.6.
    Thank for Reply.
    VM (Vijay Mishra)
    Edited by: ans_007 on Jan 28, 2010 9:06 AM

  • Error on schedule Exam

    When I want to schedule exam and click submit on page :
    URL: 
    https://examregistration.microsoft.com/?whr=uri:MicrosoftAccount&action=1&examcode=451&locale=en-us&returnToLearningUrl=https%3a%2f%2fwww.microsoft.com%2flearning%2fen-us%2fexam-70-451.aspx&examname=PRO%3a%20Designing%20Database%20Solutions%20and%20Data%20Access%20Using%20Microsoft%20SQL%20Server%202008#userConfirmation
    I get error page:
    Sorry, we are having a service interruption and are unable to complete your transaction. Please try again. If
    the problem persists, contact support.
    What is wrong?
    THX

    I got the same error when I was scheduling for myself. I had tried it in Non-IE browser (Chrome) and it worked.
    One more thing. The exam is related to SQL-2008 and the latest certifications are on 2012 which has more value.
    2 years back, I had cleared 70-433 and recently I appearred for 70-457 and 70-458. (Upgrade to 2012)
    But that's you personal choice.
    Cheers,
    Vaibhav Chaudhari
    MCP, MCTS, MCSA (SQL Server 2012)

  • Doubt regarding SCJP exam scheduling

    Hi,
    I am from india and i recently purchased a scjp voucher. In the sun website its given to call to 91-0124-451-7160 to schedule the exam in india regardless of the prometric centre we will take our exam. So, for the purpose of scheduling the exam, i need to call this number given in the website or directly make a call to the prometric centre in which i will be taking the exam???
    ThankQ

    what part of 'call XXXXX to schedule the exam' don't you understand?
    Doesn't get much more clear than that.

  • [scjp exam] garbage collection questions

    can someone please post me some garbage collection questions + correct answers, because i've taken the SCJP test again and i didn't passed it again. A co-worker of mine also didn't passed either.
    (We both got 0% on Garbage Collection every time) And i really thought i had it correct the last time.
    So please can someone mail/post me some garbage collection questions? thanks!

    The garbage collector collects unreachable objects.
    You have no control over when the objects are
    collected, but there is a guarantee that all
    unreachable objects will be collected before an
    OutOfMemoryError is thorwn.Exactly my thoughts...
    That's it. It really is just that simple. I scored 94%
    on the Programmer's Exam, with 100% in the garbage
    collection section.Hmm i got 54% last exam i took. I really begin to doubt about myself, because i find the questions on the exam so tricky.. Last book was Exam Cram (Java), and i found this a very nice and good book to study for the exam. Garbage collection is just one question, so it's either 0% or 100%. So far it hasn't gone anything higher then 0% with me.
    Here are some questions:
    1. When is the Object first available for garbage
    collection (when does it become unreachable)?
    Object o = new Object();
    Object p = o;
    o = null;
    p = null;p = null; -> available for gc.
    2. When is the Object first available for garbage
    collection?
    Object o = new Object();
    Vector v = new Vector();
    v.add(o);
    o = null;
    v = null;v = null; -> available for gc.
    3. Can the Vectors be garbage collected at the end of
    this code?
    Vector v = new Vector();
    Vector w = new Vector();
    v.add(w);
    w.add(v);
    v = null;
    w = null;yes
    Now i have a question:
    public int foo {
    Integer result = new Integer(10);
    result = null;
    return result;
    when is result available for gc?

  • Exam Prep Book for SCJA or SCJP

    Which is the best exam prep book to get should I decide that I want to go for a sun certification in either
    SCJA or SCJP

    Resp. Sir!
    I am Marimuthu i wants to get certify the sun microsystem's SCJP - Exam, sir i am complete my PG- in M.sc. comp.sci. & currently doing job Lecturer in college, sir i want your kind reply for :
    - What is the eligibility for SCJP -exam
    - What are the centers for the exam
    - What are the fees structure
    - What study materials i am prefered.
    Please sent your Kind Reply,
    Yours Truly,
    Mr. MARIMUTHU
    M.sc Comp. sci.

Maybe you are looking for

  • Tomcat 6.0 server deployment.

    Hi all, This might be the repeated query but I did'nt found it in the forum.The problem is that when we make changes in .xml file or .java file;then without restarting the server the changes are not visible. So,is there any trick or idea so htat ever

  • 802.1X Wireless Login Failure when Rebooting

    Greetings All, I have a mixture of 10.6.x laptops (as well as some 10.5.x) laptops - both MacBooks and MacBook Pros.  I have a Windows Radius Server with AD authentication.  The laptops have been programmed, via a WPA2 Enterprise trust certificate an

  • GTX 560 unable to render effects preview in CS6?

    I'm using a GTX 560 with the "hack" to allow for GPU acceleration in CS6, and it generally works fine.  But every time I try to "render effects in to out", I get an error message.  I tried rendering with GPU acceleration disabled, and it works fine. 

  • Import stops after a minute or so.

    I am trying to import video from my TV but iMovie stops importing after a minute or two. I am using a converter box (Miglia Director's Cut) and have a DVR (Digital Video Recorder) as my source. I have the video and audio cables out from the DVR going

  • Problems synching a specific playlist

    We are trying to synch a specific playlist to an iPhone 5 using iTunes 11.1.4. When the iPhone is connected, "Selected Playlists" is checked under the Music tab as is the desired playlist. However, after synching, the playlist fails to appear on the