Finals Short Quiz Flashcards
True or False
Executor Service is the basis for Java Executor framework subclasses.
True
True or False
ForkJoinPool implements the ExecutorService interface, allowing it to be used within the Java Executor framework.
True
True or False
ForkJoinPool can execute runnable and callable tasks.
False
True or False
AbstractExecutorService serves as a base for other concrete ExecutorService implementations.
False
True or False
The working stealing goal is to minimize the processor core utilization.
False
True or False
The WorkQueue deque that implements work-stealing maximizes locking contention
False
True or False
Recursive Action – used for computations in which completed actions trigger other actions.
False
True or False
In the internal fork-join framework the poll() is called from another worker thread to “steal” a (sub-)task.
True
True or False
Fork() does not run the task immediately but instead places it on the work queue.
True
True or False
In forkjointask, Fork() arranges to asynchronously execute this task in the appropriate pool.
True