What is the immediate parent class of the Applet class?



What is the immediate parent class of the Applet class?..

Answer / arpitsen

Applet extends the Panel class.

Is This Answer Correct ?    5 Yes 3 No

Post New Answer

More Core Java Interview Questions

What is a numeric string?

0 Answers  


When super keyword is used?

0 Answers  


what is an object class?Explain its methods?

6 Answers  


interface X{ void m1(); void m2(); } class Child2 extends Object implements X { public void m1(){ System.out.println("Child2 M1"); } public void m2(){ System.out.println("Child2 M2"); } } public class ParentChildInfterfaceDemo { public static void main(String[] args){ X x = new Child2(); X x1 = new Child2(); x.m1(); x.m2(); x.equals(x1); } } Will the above code work? If yes? Can you please explain why the code x.equals(x1) will work as the equals method is called on interface reference vaiable?

2 Answers  


What exactly is a .class file?

0 Answers  






Can you inherit a constructor java?

0 Answers  


Which is the best sorting technique in java?

0 Answers  


What is off heap memory?

0 Answers  


Why spring singleton is not thread safe?

0 Answers  


why the abstract class has default constructor?

2 Answers  


Why do inner class cannot have static declaration except static nested class?

2 Answers   TCS, Wipro,


What is a java object and java application?

0 Answers  


Categories