Q. What is the output of this code?
Code:
print('a' in 'apple')
β
Correct Answer: (A)
True
Explanation: The `in` operator checks if substring is present.