Python maths

Python maths

6th - 8th Grade

9 Qs

quiz-placeholder

Similar activities

Input and Output Operations in Python

Input and Output Operations in Python

6th - 10th Grade

11 Qs

Python Inputs

Python Inputs

6th - 10th Grade

11 Qs

print(), int and input() - Python

print(), int and input() - Python

6th - 8th Grade

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

checkpoint1-revision

checkpoint1-revision

8th Grade

9 Qs

Python Quiz

Python Quiz

3rd Grade - Professional Development

11 Qs

KS4 Programming Techniques (1)

KS4 Programming Techniques (1)

8th - 10th Grade

10 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