Can we create an object of static class in java?
No Answer is Posted For this Question
Be the First to Post Answer
Which language is java?
What is var keyword ?
Can we use switch statement with strings?
What is the ResourceBundle?
2 Answers Elementus Technologies,
What is boolean in java?
is set interface synchronized by default???
What do you understand by garbage collection in Java? Can it be forced to run?
Define packages 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?
Why can't we make jsp as a controller and action servlet in struts?
What is 16 bits called?
How to store image in arraylist in java?