Python maths

Python maths

6th - 8th Grade

9 Qs

quiz-placeholder

Similar activities

Lesson 1: Introduction to Python

Lesson 1: Introduction to Python

5th - 12th Grade

8 Qs

Python Functions Test

Python Functions Test

6th Grade

8 Qs

PE2 Module 3

PE2 Module 3

KG - Professional Development

11 Qs

Python Quiz 7

Python Quiz 7

KG - 6th Grade

14 Qs

Reference and Pointers in C++

Reference and Pointers in C++

6th - 8th Grade

10 Qs

IPO analysis

IPO analysis

8th - 11th Grade

13 Qs

Variables and Data Types

Variables and Data Types

8th Grade

14 Qs

Interactive 3.1: Using variables in calculations

Interactive 3.1: Using variables in calculations

4th - 7th Grade

7 Qs

Python maths

Python maths

Assessment

Quiz

Computers

6th - 8th Grade

Medium

Created by

Ben Crew

Used 56+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these would make num = 15

num = 10 + 5

num = 10 * 5

num = 10 / 5

num = 10 - 5

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these would make num = 5

num = 10 + 5

num = 10 * 5

num = 10 / 5

num = 10 - 5

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these would make num = 2

num = 10 + 5

num = 10 * 5

num = 10 / 5

num = 10 - 5

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What would the output be?

num = 10 + (10 * 10)

100

110

200

30

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What would the output be?

num = (10 + 10) * 10

100

110

200

30

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What would the output be?

num1 = 50

num2 = 130

print(num1 + num2)

190

180

200

170

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What would the output be?

num1 = 50

num2 = 150

print(num1 / num2)

50

3

2

10

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What would the output be?

num1 = 5

num2 = 15

print(num1 * num2)

70

75

20

10

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What would the output be?

num1 = 5

num2 = 15

num3 = 50

print(num1 & num2 & num3)

70

75

20

error