Question: What are the two ways to make a coroutine's computation code cancellable?
- Call the `yield()` function or check the `isActive` property.
- Call the `cancelled()` function or check the `isActive` property.
- Call the `stillActive()` function or check the `isCancelled` property.
- Call the `checkCancelled()` function or check the `isCancelled` property.
Answer: The correct answer of the above question is Option A:Call the `yield()` function or check the `isActive` property.