wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

CIRCLE 7 WEEKLY QUIZ (MONTH 1)

Total questions: 25

Worksheet time: 13mins

Name
Class
Date
1.

What type of data is stored in JSON format?

a)

Structured

b)

Semi-structured

c)

Unstructured

d)

Raw

2.

Which career role is responsible for implementing machine learning models?

a)

Data Analyst

b)

Data Engineer

c)

Data Scientist

d)

Machine Learning Engineer

3.

Which of the following is NOT an example of unstructured data?

a)

Video

b)

Spreadsheet

c)

Sound

d)

Picture

4.

The process of storing, extracting, and transforming data is the job of a:

a)

Data Scientist

b)

Data Analyst

c)

Data Engineer

d)

Business Analyst

5.

Data is referred to as:

a)

Final insight

b)

Raw material for insights

c)

Finished product

d)

A backup storage

6.

What is Python primarily used for?

a)

Typing documents

b)

Data analysis, automation, and development

c)

Hardware design

d)

File storage

7.

Which of the following is NOT a programming environment for Python?

a)

Jupyter Notebook

b)

Anaconda

c)

Sublime Text

d)

Excel

8.

Which of these is an example of system software?

a)

MS Word

b)

Google Chrome

c)

Windows OS

d)

PowerPoint

9.

What is the core of the computer architecture?

a)

Monitor

b)

Keyboard

c)

CPU

d)

USB port

10.

Which data type in Python holds a group of values?

a)

Integer

b)

Float

c)

List

d)

Boolean

11.

Which of the following is a valid variable name in Python?

a)

1variable

b)

my_variable

c)

my-variable

d)

variable name

12.

What will be the output of type(10) in Python?

a)

<class 'float'>

b)

B. <class 'integer'>

c)

<class 'int'>

d)

<class 'number'>

13.

Which of these is NOT a Python data type?

a)

String

b)

Dictionary

c)

Character

d)

D. List

14.

How do you create a list in Python?

a)

{1, 2, 3}

b)

B. (1, 2, 3)

c)

[1, 2, 3]

d)

<1, 2, 3>

15.

What is the output of len([1, 2, 3, 4])?

a)

3

b)

4

c)


5

d)


Error

16.

Which operator is used for exponentiation in Python?

a)
^
b)
**
c)
//
d)
%%
17.

What will be the result of 5 % 2 in Python?

a)
1
b)
2
c)
3
d)
0
18.

In Python, which symbol is used to assign a value to a variable?

a)
=
b)
->
c)
==
d)
+=
19.

What type of data is stored in {"name": "John", "age": 25}?

a)

List

b)

B. Tuple

c)

Set

d)

Dictionary

20.

What will be the output of type(True)?

a)

<class 'bool'>

b)

<class 'str'>

c)

<class 'int'>

d)

<class 'boolean'>

21.

Which function is used to convert a string to an integer in Python?

a)

int()

b)

str()

c)

float()

d)

bool()

22.

Which data structure stores only unique values in Python?

a)

List

b)

Tuple

c)

Dictionary

d)

Set

23.

Which method is used to add an item to the end of a list?

a)

insert()

b)

add()

c)

append()

d)

push()

24.

What is the index of the first element in a Python list?

a)

0

b)

1

c)

-1

d)

first

25.

Which operator checks if two values are equal in Python?

a)

==

b)

=

c)

=

d)

===