ayan basuu

Greenhorn
+ Follow
since Dec 04, 2007
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 ayan basuu

Thanks Frits and Pedro.
Is there any idea about the difference of course materials between JEE1.4 exam and scwcd 1.5. Since I am reading the 310-081 exam for the last few months. Please suggest.
Thanks,
Ayan
Thanks Pedro for the early reply.
But I have passed the SCJP 1.5 and I need to go with the certification for SCWCD. There I found two numbers like 310-081 and 310-082. Hence a bit confused. As a web developer, which exam should I take. If you can out some light on the same this weill be great.
Hi Everyone,
can anybody please suggest at present which SCWCD exam should we take ? please suggest the exam code whether it is 310-081 or 310-082? Thanks in advance for the help.
Hi when I am writing the code :
String s1 ="abc";
String s2 ="abc";
System.out.println(s1==s2);
System.out.println(s1.equals(s2));
It's printing
true
true
But when I am writing
String s1 =new String("abc");
String s2 =new String("abc");
System.out.println(s1==s2);
System.out.println(s1.equals(s2));
It's is printing
false
true
Could you please explain the reason behind it?