Is string serializable in java?
No Answer is Posted For this Question
Be the First to Post Answer
Explain about arraylist?
Can we override static methods?
18 Answers Bally Technologies,
What are the characteristics of java?
Can a main method be declared final?
How is java hashmap implemented?
which one is performance wise advantageious from List,Set,Map?
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 the meaning of I ++ in java?
What are the types of relation?
How do you sort an array in java?
What is meant by event handling in SAX parser?
In how many ways we can do synchronization in java?