Basic Geometry and Python Functions Quiz

Basic Geometry and Python Functions Quiz

6th Grade

6 Qs

quiz-placeholder

Similar activities

Python Test

Python Test

6th - 12th Grade

9 Qs

Python

Python

6th - 12th Grade

9 Qs

New Python Programming Math

New Python Programming Math

6th - 12th Grade

10 Qs

Scratch

Scratch

6th Grade

11 Qs

Computing - Year 7 Revision

Computing - Year 7 Revision

6th Grade

10 Qs

App Development JC 1

App Development JC 1

1st - 6th Grade

7 Qs

Output devices

Output devices

6th Grade

5 Qs

Flowchart

Flowchart

6th - 10th Grade

10 Qs

Basic Geometry and Python Functions Quiz

Basic Geometry and Python Functions Quiz

Assessment

Quiz

Computers

6th Grade

Hard

Created by

Harmeet Kaur

Used 3+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

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

Side × Side

Side + Side

2 × Side

Side / Side

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which function can be used to find the value of π (pi) in Python?

pi()

math.pi

value.pi

pi.value

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

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

π × radius

π × radius²

π × 2 × radius

π + radius²

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following reads the radius as a decimal number?

radius = int(input("Enter radius: "))

radius = str(input("Enter radius: "))

radius = float(input("Enter radius: "))

radius = bool(input("Enter radius: "))

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What will be the output if the side length of a square is 5?

10

20

25

15

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following is a valid way to read user input for the radius in Python?

radius = int(input("Enter radius: "))

radius = input("Enter radius: ")

radius = float(input("Enter radius: "))

Both A and C