What is Hierarchy of exception?
No Answer is Posted For this Question
Be the First to Post Answer
What do you understand by soft reference?
What is the loop in java?
What is port number in java?
What is string subsequence method?
If I will write String s=new String("XYZ"); String s1=new String("XYZ"); if(s.equals(s1)){ sop("True"); } else{ sop("False"); } This program will give me "True". But When I am creating my own class suppose class Employee{ public Employee(String name); } Employee e= new Employee("XYZ"); Employee e1 = neew Employee("XYZ"); if(e.equals(e1)){ sop("True"); } else{ sop("False"); } Then it will give the output as "False". Can I know what is happening internally?
What is a static class in java?
Can you pass by reference in java?
what is the difference between sleep() and Wait()?
Can you start a thread twice in Java?
What is heterogeneous in java?
What is difference between calling start() and run() method of thread?
how exactly garbage collection take place?