Unit 3 Mod 1.1

Unit 3 Mod 1.1

9th - 12th Grade

5 Qs

quiz-placeholder

Similar activities

Introductory Quiz

Introductory Quiz

9th - 12th Grade

10 Qs

Python Libraries

Python Libraries

12th Grade

10 Qs

Slip Test

Slip Test

12th Grade

10 Qs

MTH1W1 Practice with Pseudocode and Python/Edublocks

MTH1W1 Practice with Pseudocode and Python/Edublocks

9th Grade

10 Qs

Using import math  in Python

Using import math in Python

9th - 12th Grade

6 Qs

4.3 Scale Factor Review

4.3 Scale Factor Review

10th Grade

9 Qs

Random functions

Random functions

12th Grade

10 Qs

Правила записи арифметических выражений 6 класс

Правила записи арифметических выражений 6 класс

10th Grade

10 Qs

Unit 3 Mod 1.1

Unit 3 Mod 1.1

Assessment

Quiz

9th - 12th Grade

Medium

Created by

Bobbi Jennings

Used 11+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which code should you use to import a function named abc from a Python module named xyz?

import abc

from xyz import abc

import abc from xyz

import mod xyz fn abc

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When using Python, which mathematic operation returns a value of 2?

42 / 4

42 // 4

42 % 4

42 ** 4

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When using Python, what is the result of the mathematic operation 1 ** (2 * 3) / 4 + 5?

0.11

0.67

5.25

6.50

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which function from the math module can you use to round up the number 12.34 to 13?

math.ceil()

math.float()

math.floor()

math.trunc()

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which function returns only whole, even numbers from within the range from 1 to 100?

random.choice(1, 100, even)

random.randint (1, 100, 2)

random.randrange(2, 101, 2)

random.uniform(1, 100)