What does singleton class mean?
No Answer is Posted For this Question
Be the First to Post Answer
how to print output with out using sop statements
What is array in java?
What is anonymous class?
How do you make a thread in java?
How transient variable is different from volatile variable?
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?
Can anonymous class have constructor?
Difference difference paint() and paintcomponent()?
What is difference between identifier and variable?
Write the algorithm to check the number non-leaf nodes in a tree.
What is Servlet?
Which of the classes will have more memory allocated?