0 votes
in JAVA by

Which class is used to represent a thread pool that can schedule tasks for execution at a fixed rate in

Java?

a) TimerTask

b) ScheduledExecutorService

c) ScheduledThreadPoolExecutor

d) ScheduledFuture

1 Answer

0 votes
by

Solution: c) ScheduledThreadPoolExecutor

Explanation: The ScheduledThreadPoolExecutor class is used to represent a thread pool that can schedule tasks for execution at a fixed rate in Java.

...