Exam 1z0-809 All QuestionsBrowse all questions from this exam
Question 151

Which two statements are true about the Fork/Join Framework? (Choose two.)

    Correct Answer: B, C

    The Fork/Join Framework is designed to take advantage of multicore hardware, which allows for parallel processing (multicore capabilities). It divides tasks into smaller subtasks, processes them in parallel, and then joins them to get the final result (work-stealing algorithm). This improves the performance of applications significantly. Therefore, the statements that the Fork/Join framework can help you take advantage of multicore hardware and that it implements a work-stealing algorithm are both true.

Discussion
ChirajOptions: BC

I guess it's B and C.

Svetleto13Options: BC

It is B and C.

steefaandOptions: BC

B and C are correct. A is for RecursiveAction.

duydnOptions: BC

B C are correct

lchowenOptions: BC

Must be BC. if you don't need to return anything you should use RecursiveAction instead. A is incorrect.