raj

Greenhorn
+ Follow
since May 31, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by raj

Thank u Harris.
I will try to improve my weak points.
I will try to improve my coding practice also.
18 years ago
Thank u Harris.
I will try to improve my weak points.
I will try to improve my coding practice also.
18 years ago
Its good score.
But try more exams.
As u finished with reading book. Start giving mock exams, see on which chapters u r scoring less. and try to improve it.
Hi all ranchers
I am preparing for SCJP 1.5 from last two months.
Now i want to share some thoughts with u all.
And also want to get new things fromu people.
So best luck to all, who are preparing for SCJP 1.5
Is it required to unmark the questions that has been marked for review.
Do the sun counts the marks of marked questions.
Plz explain me these things
Thank you for ur great suggetion Patrick
I will try my best this time.

but i want to ask one thing.
I gave round about 35 different mock tests and passed all but failed in exams
why that so?
18 years ago
I tried my best but i m failed
From last 2 and 1/2 months i m preparing for it.
first time i got 48%
and now i got 50%
I m not able to trace out my problem .
I m weak in Generics and collection also in fundamentals
So anyone plz suggest me to trace out the problem
18 years ago
I tried my best but i m failed
From last 2 and 1/2 months i m preparing for it.
first time i got 48%
and now i got 50%
I m not able to trace out my problem .
I m weak in Generics and collection also in fundamentals
So anyone plz suggest me to trace out the problem
Threads are invoked by calling a start() method not by calling run() method.
Means when you call Thread.start() new thread is created.

So You are setting the name of the thread as T1
After exection of
new Thread(new B(),"T1").start();

new thread is generated with name "T1" and B's run metod will be invoked(becz of start())
within this thread u r calling
new A().run(); //output "T1"

this causes A's run() method to call (not a seperate thread) with thread "T1".

new Thread(new A(),"T2").run(); //output "T1"

Tis line again calling A's run() method within same thread "T1".

new Thread(new A(),"T3").start(); //output "T3"

In this line u r creating new thread(becz of start()) with the name "T3".