WorksheetsPython Quiz
Total questions: 10
Worksheet time: 10mins
What is the coder's word for converting one data type into another?
casting
throwing
catching
Which container type will you use to store the personal best times achieved by club swimmers in the 100m freestyle such as: Mark: 65.34s, Freya: 68.04s, etc.
tuple
list
dictionary
Which container type will you use to store the months of the year?
tuple
list
dictionary
Which container type will you use to store the monthly rainfall data for Dubai in 2019?
tuple
list
dictionary
Which container type will you use to store the names of the students who currently attend the Coding class?
tuple
list
dictionary
Which is the best choice to store seven strings consisting of the days of the week (e.g. "Monday") that we want to use in an application?
tuple
list
dictionary
Which is the best choice to store the full names of members of the Coding class in an application we use to keep track of who is still a club member?
tuple
list
dictionary
Which is the best choice to store the ten integer values (0, 1, 2, 3, 4, 5, 6, 7, 8 and 9) of the keys used to make a calculator app?
tuple
list
dictionary
______________ are comments in a program that explain what the code does
Concatenation
Type Casting
Annotation
______________ is the classification of data which tells a computer how to process the data.
Concatenation
Data type
Annotation
