C-16-Q123mediummulti_combo_mcq
Which of the following statements about Python are TRUE?
Which of the following statements about Python are TRUE?
- Python is case-sensitive
- Keywords cannot be used as variable names
- The data type must always be declared before assignment
- ai and ii
- bii and iii
- ci and iii
- di, ii, and iii
ব্যাখ্যা
Python is case-sensitive (so Mark and mark differ), and reserved keywords cannot be used as variable names. Statement iii is false because Python is dynamically typed — types are inferred at assignment and need not be declared in advance.