> I'm currently studying for the "Java certified programmer", and
> some book (whose authors claim to have had some deeper insight
[quoted text clipped - 5 lines]
> that an int-compatible variable named "abcd" is in some way
> visible at this point (e.g. even through static import).
The answers are usually multiple choice, and that gives you enough
context to answer correcty. At least on the practice exams I've taken.
> 2.) "if obj is an instance of Object ..." then follows a question
> whose answer depends on whether obj is really only Object (and not
[quoted text clipped - 8 lines]
> integer-literals!
>From my understanding, the JCP doesn't ask about bad-style/practices,
only valid syntax.
> enum E { A, B, C } is supposedly wrong, because a semicolon is
> missing after the last instance - but javac (and
> docs) say it's correct so.
The semicolon is actually optional, and is only needed if you are
adding members to the base enum class E. Remember, enums are classes,
and each value has its own class, and therefor can have its own
members.
enum E { A { int aInt; }, B, C; int eInt; E() { eInt = ordinal() + 1; }
}
is valid as well as
enum E { A }
> Can I assume that the questions on the real exam are unambiguous,
> or do I have to look forward to just guess the context for some
[quoted text clipped - 4 lines]
> then find I've got too little percentage in the corresponding
> section, would it be feasible to question the result?
Well, this might just be the blind leading the blind, as I haven't
taken the cert yet myself, but hopefully I've answered your questions
correctly. Good luck.
Daniel.
adwords@pulpjava.com - 14 Nov 2006 05:35 GMT
WHy not try the SCJA certification first.
There are some sample mock exams here: www.scja.com
Cheers!
-Cameron McKenzie
> > I'm currently studying for the "Java certified programmer", and
> > some book (whose authors claim to have had some deeper insight
[quoted text clipped - 48 lines]
>
> Daniel.
Andreas Leitgeb - 14 Nov 2006 13:32 GMT
> The answers are usually multiple choice, and that gives you enough
> context to answer correcty. At least on the practice exams I've taken.
While I deprived the sample questions even of their (minimal)
context when quoting them here, I wouldn't have quoted them, if their
context had given that information. The context inferred by the other
solutions is more often a pitfall than a help. (in that particular
book, that is)
> Remember, enums are classes, and each value has its own class,
> and therefor can have its own members.
I wouldn't say so. Of course, this code is correct:
> enum E { A { int aInt; }, B, C; int eInt; E() { eInt = ordinal() + 1; } }
but only A is of a different class (namely E.$1) than B and C.
The latter ones are both exactly class E
Btw, the "compile-time" type of A (still E) doesn't allow one
to access "aInt", but with reflection, one can.
> I'm currently studying for the "Java certified programmer", and
> some book (whose authors claim to have had some deeper insight
[quoted text clipped - 9 lines]
> whose answer depends on whether obj is really only Object (and not
> more). For any object, (object instanceof Object) is true, after all.
You have a bad book. Google for "java certification" and you will see
that certain books are preferred. The questions on the exam are often
tricky but always fair.

Signature
Sincerely,
Tris Orendorff
[Q: What kind of modem did Jimi Hendrix use?
A: A purple Hayes.]
Andreas Leitgeb - 14 Nov 2006 14:49 GMT
> You have a bad book. Google for "java certification" and you will see
> that certain books are preferred. The questions on the exam are often
> tricky but always fair.
Thanks a lot for this relieving information!
I didn't find this book generally bad, but it's good to know
that if something seems fishy in the book, then it's just the
book that's fishy, and (at least most likely) not the exam.