Question: What is a side effect of using `time.After` in a `select` statement?
- It blocks the other channels.
- It is meant to be used in select statements without side effects.
- It blocks the `select` statement until the time has passed.
- The goroutine does not end until the time passes.
Answer: The correct answer of the above question is Option B:It is meant to be used in select statements without side effects.