How do you call a reference in java?
No Answer is Posted For this Question
Be the First to Post Answer
how many ways we can serialize the java object?
What is the difference between array list and vector in java?
is this possible to create an array of 0 length? if so how? if not so why? coz we have an array in main() likw this "static void main(String [] s) then what it signifies?
What is the relationship between a method?s throws clause and the exceptions that can be thrown during the method?s execution?
I have multiple constructors defined in a class. Is it possible to call a constructor from another constructor’s body?
Is void a data type in java?
What is the use of Getters and Setters method ?
What is the purpose of the system class in java programming?
what is the volatile modifier for? : Java thread
Is null a keyword in 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?
What does it mean that a class or member is final?