WorksheetsQ1 - Comp Vision
Total questions: 10
Worksheet time: 5mins
A ____ is a named location used to store data in the memory. It is helpful to think of variables as a container that holds data that can be changed later in the program.
variable
dynamic variable
memory
storage
Python is a _____ language, so you don't have to explicitly define the variable type.
type-inferred
dynamic
flexible
pre-defined
A ____ is a type of variable whose value cannot be changed. It is helpful to think of constants as containers that hold information which cannot be changed later.
constant
fixed
constant variable
pre-defined
___ is a raw data given in a variable or constant.
Literal
Variable
Constant
Numerical
tuple
list
set
dict
set
dict
tuple
list
____ is an unordered collection of key-value pairs.
It is generally used when we have a huge amount of data
dict
set
list
tuple
In ___ type conversion, Python automatically converts one data type to another data type.
implicit
explicit
dynamic
flexible
In ____ Type Conversion, users convert the data type of an object to required data type. We use the predefined functions like int(), float(), str(), etc to perform type conversion.
explicit
implicit
dynamic
flexible
