Manoj Mani

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

Recent posts by Manoj Mani

You are a born fighter...Amazing is your courage.......
18 years ago
Congrats......Can you tell how was your last minute preparation?
18 years ago
To know the score, Is it enough to solve the Mock exam given by Khalid Mughal and Kathie sierra in his/her CD (Which i got when i purchased the book...I am going for SCJP 1.4 in this weekend)...Reply Fast..
18 years ago
Thanks paul....Till now i didnt get the password.....Please forward it to [email protected]........
18 years ago
I have registered in JDiscuss ... but they are not sending the password to my Email id....I have tried many times to different email ids but they are not sending it.Is this problem faced by anybody else? How to solve this....
18 years ago
Thanks Damo........... ANy particular files or links............?
18 years ago
To rate my score,Which is the best Mock exam i should take before the exam(I am going for SCJP(1.4)).If you have the link or the file,please forward it today itself to [email protected] or send here itself.I need it urgently.(Send me the exam which actually helped you a lot...).I am going to take the exam next wednesday...
18 years ago
To rate my score,Which is the best Mock exam i should take before the exam(I am going for SCJP(1.4)).If you have the link or the file,please forward today itself to [email protected] need it urgently.
To rate my score,Which is the best Mock exam i should take before the exam(I am going for SCJP(1.4)).If you have the link or the file,please forward today itself to [email protected] need it urgently.
class Apple
{
public void m1() throws SecurityException
{
System.out.println("I want more apple");
}
}


public class Orange extends Apple
{
public void m1() throws SecurityException
{
System.out.println("I want more Orange");
}
public static void main(String [] args)
{
Orange p = new Orange();
p.m1();
}
}


Now if we change SecurityException either by IOException,Exception etc...we will get an error... Can anybody give the complete hierarchy of the Checked,Unchecked Exceptions(Better,give the complete hierarchy starting from Throwable)..
Thanks three of you................I got it........
class Animal {}
class Cat extends Animal {}
class Dog extends Animal {}

public class GarbageCollection
{
public static void main(String[] args)
{
Animal a1 = new Cat();
Animal a2 = new Dog();
Animal a3 = a1;
a1 = null;
Animal a4 = a1;
Animal a5 = a2;
a1 = a2;
a2 = a4;
a5 = null;
a3 = a1;

// Here
}
}
When that code reaches the comment "Here" how many objects will be eligible for garbage collection?

This is the example taken from Corey's Blog.Only the cat object will be eligible for garbage collection..........? There are some other variables a4,a2,a5 which have null values in the last stage.Those variables will also be eligible for garbage collection,na?
Congrats Amol.......Send some very useful mock exams,points(scjp 1.4) to [email protected] need it .....Will be useful if you send it today itseif...............
18 years ago
Congrats Nishanth.........Send some very useful mock exams,points(scjp 1.4) to [email protected] need it .....Will be useful if you send it today itseif...............
18 years ago
Congrats Amritha.........Send some very useful mock exams,points(scjp 1.4) to [email protected] need it .....Will be useful if you send it today itseif...............
18 years ago