wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Q1 - Comp Vision

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

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.

a)

variable

b)

dynamic variable

c)

memory

d)

storage

2.

Python is a _____ language, so you don't have to explicitly define the variable type.

a)

type-inferred

b)

dynamic

c)

flexible

d)

pre-defined

3.

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.

a)

constant

b)

fixed

c)

constant variable

d)

pre-defined

4.

___ is a raw data given in a variable or constant.

a)

Literal

b)

Variable

c)

Constant

d)

Numerical

8.

____ is an unordered collection of key-value pairs.

It is generally used when we have a huge amount of data

a)

dict

b)

set

c)

list

d)

tuple

9.

In ___ type conversion, Python automatically converts one data type to another data type.

a)

implicit

b)

explicit

c)

dynamic

d)

flexible

10.

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.

a)

explicit

b)

implicit

c)

dynamic

d)

flexible