What is the difference between compiler and jvm?
No Answer is Posted For this Question
Be the First to Post Answer
where lives in jvm
Explain the importance of join() method in thread class?
Is null function in java?
What are the rules for variable declaration?
What is final modifier?
Difference between static methods, static variables, and static classes in Java.
What do you mean by append?
Write a program based on Java script program.
What are serialization and deserialization?
explain about method overloading and method overriding with difficult examples
use of wrapper classes?
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?