Q. What is the output of `print('A' in 'Apple')`?
β
Correct Answer: (A)
True
Explanation: The `in` operator checks for substring membership. Since 'A' is in 'Apple', it returns True.