What is the platform?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between printf and scanf?
Explain about strings in java?
strings in java are objects.why?
What is gui programming?
How do you sort in ascending order in java?
What is ascii format?
What is deserialization?
What is bubble sort in java?
What does nullpointerexception 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 design pattern and there types?
What are the types of collections in java?