Kishore Pamu

Ranch Hand
+ Follow
since Mar 18, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Kishore Pamu

First you read a good certification book like simon roberts and
moghulkalid.Then you do some programming in java,after that
you take all the mock exams in http://www.javaranch.com/mock.jsp
and if you score 80% to 90% then you can easily get good score
in the real exam.
Hi!folks,
I want some guidence from you.
As i completed scjp I want to do some projects
Is there any site ,where can i get good specs
to do projects.
can i jump to developer programing right now
or after getting some experience from the projects.
thanks!
23 years ago
In the try block you have to write the code
which throws an IOException otherwise it gives
compiler error.
In the try block you have to write the code
which throws an IOException otherwise it gives
compiler error
The File Seperator is platform dependent.
Though the exception is raised the
object will be garbage collected.
if the finalize method in your
progam throws an exception it must
be enclosed in an try catch block
otherwise it gives a compiler error.
hope it helps!.
Though the exception is raised the
object will be garbage collected.
if the finalize method in your
progam throws an exception it must
be enclosed in an try catch block.
hope it helps!.
Hi!folks,
I want some guidence from you.
As i completed scjp I want to do some projects
Is there any site ,where can i get good specs
to do projects.
can i jump to developer programing right now
or after getting some experience from the projects.
thanks!
23 years ago
Hi!folks,
I want some guidence from you.
As i completed scjp I want to do some projects
Is there any site ,where can i get good specs
to do projects.
can i jump to developer programing right now
or after getting some experience from the projects.
thanks!
23 years ago
Hi!Bailey,
You just go through your notes make sure you
know threads ,constructors in IO package .
and know all the methods in lang package etc.
the night before the exam have a good sleep,
avoid tense,be confident and also be alert
while taking the exam read the question
carefully and answer it .

------------------
Kishore
Hi! Charlie,
i studied moghulkalid book the chapter on IO is very good
and in www.jtips.com had a good tutorial on IO package.

------------------
Kishore
Hi! Charlie,
i studied moghulkalid book the chapter on IO is very good
and in www.jtips.com had a good tutorial on IO package.

------------------
Kishore
Usha you are right
the priority can be set to a thread before it is started.
Hi!Greg,
I compiled your program and got the output
as
i=1,j=0
i=2,j=0
i=2,j=1
the answer b is wrong.According to the program
firt i=0 and j=0
the if conditons becomes true and again it goes to Outer
then i=1 and j=0 the if condition returns false and i=1,j=0 is printed.
now j value is incrimented and becomes j=1 the if conditon returns true so it continues outer then
now i=2 and j=0 the if condition returns false and i=2,j=0 is printed
now j value is incremented and becomes j=1 theif conditon returns false and i=2,j=1 is printed.
now control goes to for loop jis incremented to 2
now the if condition returns true and it continues outer
and the progam terminates.
Hope this helps!.