Question: What is the purpose of the `pass` statement in Python?
- It is used to skip the `yield` statement of a generator and return a value of None.
- It is a null operation used mainly as a placeholder in functions, classes, etc.
- It is used to pass control from one statement block to another.
- It is used to skip the rest of a `while` or `for loop` and return to the start of the loop.
Answer: The correct answer of the above question is Option B:It is a null operation used mainly as a placeholder in functions, classes, etc.