Using import math  in Python

Using import math in Python

9th - 12th Grade

6 Qs

quiz-placeholder

Similar activities

Eng201 - Noora Alrayes 3chem7

Eng201 - Noora Alrayes 3chem7

11th Grade

11 Qs

Luas dan Volume Tabung

Luas dan Volume Tabung

9th - 12th Grade

10 Qs

quiz mtk kelompoknya siska

quiz mtk kelompoknya siska

9th Grade

10 Qs

Ulangan Bab Tabung Kelas 9

Ulangan Bab Tabung Kelas 9

9th Grade

10 Qs

Trigonometric Functions Quiz

Trigonometric Functions Quiz

10th Grade

10 Qs

Rumus-rumus Trigonometri

Rumus-rumus Trigonometri

11th Grade

10 Qs

Quiz 1 Bentuk Akar Matematika Kelas 10

Quiz 1 Bentuk Akar Matematika Kelas 10

10th Grade

10 Qs

Inverse Trigonometry Quiz

Inverse Trigonometry Quiz

12th Grade

10 Qs

Using import math  in Python

Using import math in Python

Assessment

Quiz

Others

9th - 12th Grade

Medium

Created by

Chizoba Mercy Akwugo

Used 2+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does import math do in Python?

Draw shapes

Draw shapes

Brings in extra math functions.

Makes your code run faster

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which function gives you the value of π (pi)?

pi()

math.pi()

math.PI()

get.pi()

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the formula to calculate the area of a circle?

π × r²

2 × π × r

π × 2 × r

r² + π

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you calculate the square root of 25 using Python?

math.square(25)

math.sqrt(25)

sqrt(25)

math.pow(25, 2)

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following finds the area of a circle with radius 5?

5 * 3.14

math.pi *5**2

math.sqrt(5)

math.pow(5, 2)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following imports both math and random libraries?

import math.random

from math import random

import math, random

random.import(math)