Josef Zdepa

Greenhorn
+ Follow
since Sep 03, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Josef Zdepa

I have learned from Thinking in Java by Bruce Eckel (the free edition for Java 1.4) and the Katherine Sierra and Bert Bates book for SCJP 5.

It took me about 2 and a half months.
I did only a few free mock exams. Should probably took more to get a better score, but I'm satisfied that I passed.

The questions were fair, but the time was not enough for me, I didn't finished about 4 questions and couldn't do any reviews (btw. before reviewing a drag&drop questions there is warning that the question will get erased).

In the middle of the exam the given marker refused to write on the plastic pad but I could easily write on the plastic desk:-)

Thanks for the wonderfull forum.
17 years ago
Long l = 7; -> error, 7 is a literal integer
Short s = new Short(7); -> error, 7 is a literal integer

But:
Short s = 7; OK

Why is that? I don't understand.
[ September 04, 2006: Message edited by: Barry Gaunt ]
Because the cycle doesn't execute.