Which java.util classes and interfaces support event
handling?
Answers were Sorted based on User's Feedback
Answer / shan
EventObject is a class which belongs to java.util package ,
and its subclasese
EventListener interface and its sub interfaces belongs to
util package
so that the both EventObject and EventListener helps to
perform event handling in java
| Is This Answer Correct ? | 14 Yes | 2 No |
The interface java.util.Observer interface and the
java.util.Observable class support event handling
| Is This Answer Correct ? | 6 Yes | 9 No |
What is static class
How many bits is a string in java?
What are java threads?
import java.io.*; class Demo { public static void main(String args[]) { File f=new File("1234.msg"); String arr[]=f.list(); System.out.println(arr.length); } }
What are the pillars of java?
Can you access the private method from outside the class?
Can we overload final method in java?
What is collection class in java? List down its methods and interfaces.
How many types of assembly languages are there?
Can I declare a class as private?
Can we compare two strings in java?
How do we access static members in java?