CBSE Class 11 Computer Science Question 89 of 98

Python Programming Fundamentals — Question 3

Back to all questions
3
Question

Question 3

Default variable initialization is string literal.

Answer

False

Reason — In Python, variables are not initialized with any default values or types. The type of a variable is determined by the value assigned to it, and Python does not default to initializing variables as string literals. Instead, we must explicitly assign a value to a variable, whether it's a string, integer, or any other data type.