Pandharinath Barve

Greenhorn
+ Follow
since Aug 04, 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 Pandharinath Barve

Hi,

I have completed scjp5 and want to do SCWCD. Can anybody help with latest version, how many days it will take and all required information.

Thanks,
Pandhari
Hello,

I am plannig to give scwcd in next month. Please tell me the links for scwdc resources. Please tell me if any discount scheme avilable on vouchers.


Regards,
Pandharianth
SCJP 5.0 (81%).
Hi All,

I have cleared the SCJP 5.0 exam with 81%.

Thanks to Java Ranch Forum, I have cleared my doubts, and done well in the exam. Thanks to K & B Book.

Thanks for support of Java Rancher.
16 years ago
its compiling on 1.5 and giving o/p like this.

f.b.num in main is:9
b.num in a method :23
b.num in a method now :45
f.b.num in main after ChangeIt is:45
Can you please explain me in detail..
Integer i = 127;
Integer j = 127;
if (i == j){
System.out.println("Same");
}
else{
System.out.println("different");
}
output = same.

Integer i = 128
Integer j = 128;
if (i == j){
System.out.println("Same");
}
else{
System.out.println("different");
}
output = different.

Please explain why ?
its happening because of overloading. if you change
NewBird rap = new Raptor(); to Raptor rap = new Raptor();
doSomething() method of Class Raptor getting called.
its happening because of overloading. if you change
NewBird rap = new Raptor(); to Raptor rap = new Raptor();
doSomething() method of Class Raptor getting called.
you can not use "this" in static context.

Regards,
Pandharianth.
awt
AWT is not there for SCJP5.