Question: You have started a long-running coroutine whose job you have assigned to a variable named **task**. If the need arose, how could you abort the coroutine?

  1. `task.join()`
  2. `task.abort()`
  3. `job.stop()`
  4. `task.cancel()`

Answer: The correct answer of the above question is Option D:`task.cancel()`