Question
Which cancellation type may terminate a thread immediately without waiting for a safe cancellation point?
Select an option. Your answer will be checked instantly.
Correct Answer: B. Asynchronous cancellation
Explanation:
Asynchronous cancellation permits termination at an arbitrary execution point.
It is dangerous because the thread may hold resources or be updating shared state.
Leave a Reply