what are places where run() is declared.
-
Thread class
-
Runnable Interface
-
Applet
-
Throwable
A,B
Correct answer
Explanation
The run() method is defined as an abstract method in the java.lang.Runnable interface to represent a task's entry point. The java.lang.Thread class implements Runnable and provides a concrete implementation of run(). Neither Applet nor Throwable declares the run() method as part of their standard contracts.