How java is similar to c?
What is difference between hashset and hashmap?
What is formatted output in java?
What is collection api?
Can we assign integer value to char in java?
1).Is Object class abstract or not? 2).Is main method(public static void main(String args[])low priority thread or high priority thread?
Can a private method be declared as static?
What is reflexive association?
What is the preferred size of a component?
When is the garbage collection used in Java?
What does java final mean?
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 an enumeration?