0 votes
in JAVA by

Which class is used to schedule a task for execution after a specified delay in Java?

a) Timer

b) TimerTask

c) ScheduledExecutorService

d) ScheduledThreadPoolExecutor

1 Answer

0 votes
by

Solution: a) Timer

Explanation: The Timer class is used to schedule a task for execution after a specified delay in Java.

...