Q. What is the output of `print('Hello' * 3)`?
β
Correct Answer: (B)
HelloHelloHello
Explanation: The `*` operator repeats strings in Python. So `'Hello' * 3` results in `HelloHelloHello`.