A. Tick (✓) the correct answer:
1.When a new value is stored in a variable, its previous value gets __________.
(a) Accepted
(b) Overwritten
(c) Overlapped
(d) None of these
Answer: (b) Overwritten ✓
2.The data type for 12.4 should be __________.
(a) Int
(b) Float
(c) Str
(d) None of these
Answer: (b) Float ✓
3.Which of the following data types is not supported in Python?
(a) Char
(b) Float
(c) Int
(d) None of these
Answer: (a) Char ✓
4.>>> print('10'+'20') will give the output __________.
(a) 30
(b) 1020
(c) 2010
(d) None of these
Answer: (b) 1020 ✓
5.Values are assigned to variables using the __________ operator.
(a) String
(b) Print()
(c) Assignment
(d) None of these
Answer: (c) Assignment ✓
B. Write 'T' for true and 'F' for false in the given circles:
1.A variable name can consist of letters, digits, and underscore.
Answer: T
2.In Python, only one type of data can be stored in memory.
Answer: F
3.To evaluate an arithmetic expression, it is not necessary to use the print() function.
Answer: T
4.The string values cannot be multiplied together.
Answer: F
5.In Python, data types represent the type of data stored in a variable.
Answer: T