Explain about core java?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

Given a singly linked list, how will you print out its contents in the reverse order? Can you do it with consuming any extra space?

0 Answers   Akamai Technologies,


Explain public static void main(string args[]) in java.

0 Answers  


Can two objects have same hashcode?

0 Answers  


Is map ordered in java?

0 Answers  


Where the CardLayout is used?

1 Answers  






How does enum work in java?

0 Answers  


When should I use stringbuffer?

0 Answers  


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?

5 Answers  


What is the difference between jfc & wfc?

0 Answers  


Can we declare an anonymous class as both extending a class and implementing an interface?

8 Answers   College School Exams Tests, JVA, TCS, Wipro,


What is the size of int in 64-bit jvm?

0 Answers  


Can we have multiple classes in single file ?

0 Answers  


Categories