Python maths

Python maths

6th - 8th Grade

9 Qs

quiz-placeholder

Similar activities

Python Quiz 7

Python Quiz 7

KG - 6th Grade

14 Qs

Variables and Functions

Variables and Functions

KG - University

10 Qs

Python Programming Class Work

Python Programming Class Work

7th Grade

10 Qs

Reference and Pointers in C++

Reference and Pointers in C++

6th - 8th Grade

10 Qs

Scrath

Scrath

6th Grade

7 Qs

Variables - 1

Variables - 1

7th - 8th Grade

9 Qs

Year 7 Python Lesson 1 Recap

Year 7 Python Lesson 1 Recap

8th Grade

10 Qs

Quiz- Grade 7 & 8- Python (2nd term)

Quiz- Grade 7 & 8- Python (2nd term)

7th Grade

8 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