What is nested class?


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

Post New Answer

More Core Java Interview Questions

How many bytes are a float?

0 Answers  


What is the core java?

0 Answers  


can we create object for static class in java

14 Answers   IAP Company, IBM, Marlabs, mPortal, TCS,


How does thread synchronization occurs inside a monitor? What levels of synchronization can you apply?

0 Answers  


Tell us something about set interface.

0 Answers  






Describe string intern() methodology

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  


Can we call the run() method instead of start()?

0 Answers  


why we write public static void main (String args[]) in core java plz explain briefly??????????????????

3 Answers   HCL,


What is dynamic array in java?

0 Answers  


What are Encapsulation, Polymorphism and Inheritance?

5 Answers  


Can you use abstract and final both with a method?

0 Answers  


Categories