What is the top class of AWT event hierarchy?

Answers were Sorted based on User's Feedback



What is the top class of AWT event hierarchy?..

Answer / janet

The java.awt.AWTEvent class is the highest-level class in
the AWT event-class hierarchy.

Is This Answer Correct ?    18 Yes 0 No

What is the top class of AWT event hierarchy?..

Answer / akhil

AWTEvent class is the top class of AWT event hierarchy and
all other event classes and awt event also extends from
EventObject class

Is This Answer Correct ?    8 Yes 2 No

What is the top class of AWT event hierarchy?..

Answer / ashish shinkar

component

Is This Answer Correct ?    5 Yes 1 No

What is the top class of AWT event hierarchy?..

Answer / chandrarekha

java.util.EventObject---java.awt.awtevent....

Is This Answer Correct ?    6 Yes 3 No

What is the top class of AWT event hierarchy?..

Answer / ravikiran

container

Is This Answer Correct ?    4 Yes 5 No

Post New Answer

More Core Java Interview Questions

How do you compare characters in java?

1 Answers  


Can we serialize arraylist in java?

1 Answers  


Why stringbuilder is not thread safe?

1 Answers  


I declared main() method as private. But it still running and displaying the output. Please Answer it . Code Snippet as Below: import java.io.*; class over { private static void main(String[] args) { int high = Integer.MAX_VALUE; int overflow = high + 1; int low = Integer.MIN_VALUE; int underflow = low - 1; System.out.println(high + "\n" +overflow +"\n"+ low +"\n"+underflow); //System.out.println(overflow); //System.out.println(low); //System.out.println(underflow); } }

4 Answers   Cap Gemini,


In collection sorting comparable and comparator interface will be used..but why this two interfaces required..two will work same purpose so why there are two interfaces instead of one?when to use comparator and when to use comparable?

1 Answers   Ericsson,


system.out.println(1 + 3);

8 Answers  


What is java reflection api?

1 Answers  


What is difference between static class and singleton pattern?

1 Answers  


What are constructors in java?

1 Answers  


What is difference between final and immutable?

1 Answers  


Explain inner classes ?

1 Answers  


How many bits are in a sentence?

1 Answers  


Categories