Hemavathy Lakshmikanthan

Greenhorn
+ Follow
since Sep 09, 2005
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 Hemavathy Lakshmikanthan

Hi

i have got my certificate from sun for SCJP1.4 .. with a logo and an id card is the logo available as soft copy .. i mean an image that can be placed in my resume..will the logo be sent to me to the mail - id i provided ?
kindly help
Regards
Hema
Dear sathish sir
Thanks for ur valuable suggestion...
After reading several posts from Javaranch.. i decided to take up SCWCD..
Made up mind to work towards it ....
Kindly suggest a good book to get thorough knowlege abt servlets, JSP...



Regards
Hema
dear ranchers
one of my frends told me that taking SCWCD certification first is more appropriate than SCBCD ..

Kindly help to spot the distinction as i am in my first stage of learning J2EE !

Regards
Hema
SCJP 1.4
Dear Ranchers ..
i am eager to learn EJB and get SCBCD certification..
I have decided to buy K & B HeadFirst EJB...
Kindly suggest the study material and resources for the same..
expecting your guidance and help..

Regards
Hema
Dear Ranchers

I cleared SCJP 1.4 with 90 % .
It was a very nice experience..
(55 out of 61 )
Qns were too good ... i dont knw where i went wrong..

happy and satisfied with my performance..

I started my Preparation in the month of Sep and
gt certified in Dec.

I express my heartfelt thanks to the Ranchers for your invaluable support..

Lots of thanks to the Authors like Khalid Mughal, Kathy Siera, Bert Bates, Marcus Green, Bill Brodgen... for their wonderful books.

To the creators of MOCK EXAMS from varied websources..
and special thanks
to javaranch " THE RULES ROUND UP " - My first Mock Exam..


Regards
Hema



18 years ago
LOTS AND LOTS OF THANKS TO JAVARANCH ........


Regards
Hema
18 years ago
Thanks for ur valuable suggestions...
i have prepared from K & B e - book...
I will do my best for the exam....
Thanks for the support

Regards
Hema
Dear Ranchers

i am taking the exam on Dec 1st...
i would like to know
--- if time will a constraint in the exam...
--- Regarding marking / unmarking qns....
--- While reviewing can we go BACK to review all the qns or Only those marked
--- At the end of the tests . does all the qns have to be unmarked..


i hav been working for 3 months.. used K & B ebook, Khalid mughal..(Ebook),
Bill Brodgen and Marcus Green...(Ebook)
Around 85 - 90 % scoring in mocks....


kindly help... and give me any suggestions..
Regards
Hema
i think the compiler doesnt object for

Throwable , Exception,( Error & RuntimeException and its subclasses )
( to be given in the catch clause ) when try is given as :

try {
}
catch( ) { }

however it objects for All CHECKED Exceptions ...

(Correct me if am wrong)

Hema
A progmmer has written the following class to prevent garbage collection of the objects of this class. Is he mistaken?

class SelfReferencingClassToPreventGC
{
private SelfReferencingClassToPreventGC a;
Object obj = new Vector();
public SelfReferencingClassToPreventGC()
{
a = this; //reference itself to make sure that this is not garbage collected.
}

public void finalize()
{
System.out.println("Object GCed");
}
}


Answer provided :

Explanation:
Yes, he is definitely mistake. Because, all he is creating is a circular reference, but such references do not prevent an object from garbage collection. Basically, if B is only refereded to by A and A is eligible for GC, then B iseligible for GC to. So, if A refers to B and B refers back to A, this arrangement does not prevent them from being garbage collected

Could anyone explain the actual concept ..
Thanks for the info.. regarding the book..
and i am practising to work with Collections ... but due to the assorted methods in the class , i found it quite difficult to remember all of them.. anyway my practise only will make it perfect .. Thank you
hi everybody

i have planned to take up SCJP 1.4 in the first week of Dec.
i have few queries

1. Is it required to learn all the methods of the classes
like Vector,ArrayList,TreeMap,HashMap ......
2. Difference between getXXX and valueOf methods in the wrapper classes.

kindly help ..
Regards
Hema