CBSE Class 11 Computer Science Question 90 of 98

Python Programming Fundamentals — Question 4

Back to all questions
4
Question

Question 4

3+C = A is a valid statement.

Answer

False

Reason — In Python, assignment statements follow the syntax variable = value, where the variable (L-value) is on the left side and the value (R-value) is on the right side of the equal sign. Therefore, 3+C = A is an invalid statement in Python because the left side (3+C) is not a valid variable name.