How do you create a null object?
No Answer is Posted For this Question
Be the First to Post Answer
What is an example of character?
What do you mean by buffering?
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 associative array
How many java versions are there?
Can java run on google chrome?
How do I know if java is installed?
Why java is called not pure object oriented language?
What does it mean that strings are immutable?
What are the library functions in java?
Does hashset allow duplicates in java?
What is the ==?