What is boolean strategy?
No Answer is Posted For this Question
Be the First to Post Answer
Explain a few methods of overloading best practices in java?
Why is stringbuffer called mutable?
How Vector class is synchronized,How to build user defined class as synchronized?
What is the synonym of framework?
Can we convert stringbuilder to string in java?
What purpose do the keywords final, finally, and finalize fulfill?
How we can declare a static variable?
did interface can implementation method ? i know its not possible but my interviewer said its possible ..but how..? any one have idea ???
What environment variables do I need to set on my machine in order to be able to run java programs?
What is an example of a keyword?
Can arraylist hold different types java?
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?