What is function declaration?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the difference between getAppletInfo and getParameterInfo?
what are literals in java?
What is meant by packages?
Explain different data types in Java.
What do you mean by mnemonics?
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 JVM ?
4 Answers Phantom Technologies, TCS,
Explain the role played by Java Virtual Machine in Java Programming?
Is it safe to install java on my computer?
What is string [] java?
In java how do we copy objects?
What is default constructors?