CBSE Class 11 Computer Science
Question 34 of 88
Tuples and Dictionary — Question 14
Back to all questionsFalse
Reason — In Python, dictionary keys are case-sensitive. The dictionary D1 has the key "Virat" with an uppercase 'V', but the check is for "virat" with a lowercase 'v'. Since "virat" does not match the case of the key "Virat", the expression "virat" in D1 evaluates to False.