
Year 10 - Arithmetic Operators and Concatenation - AFL
Quiz by Teran Subasinghe
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Measure skills
from any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
With a free account, teachers can
- edit the questions
- save a copy for later
- start a class game
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
20 questions
Show answers
- Q1What is the result of the expression 10 // 3 in Python?3.33301030s
- Q2What will be the output of the expression 5 ** 2 in Python?25251030s
- Q3If a = 8 and b = 3, what is the result of a % b in Python?352030s
- Q4What is the result of the expression 10 + 5 * 2 in Python?3015202530s
- Q5What will the expression 7 - 2 + 1 return in Python?761530s
- Q6What is the output of the expression 15 / 4 in Python?3.75315430s
- Q7What does the expression 5 + 3 * 2 - 1 evaluate to in Python?1087930s
- Q8What is the output of the expression 14 % 5 in Python?254330s
- Q9What will be the result of the expression 2 ** 3 + 4 in Python?101214830s
- Q10What will be the output of the expression 8 // 3 in Python?2.6713230s
- Q1130s
- Q1230s
- Q13Which of the following will produce the string 'Python is fun!'?'Python * 3''Python' + 3'Python' + 'is' + 'fun!''Python ' + 'is fun!'30s
- Q14What is the correct way to concatenate two strings 'Hello' and 'World' in Python?'Hello' * 'World''Hello' & 'World''Hello' - 'World''Hello' + 'World'30s
- Q15What will be the output of the following code: print('Good ' + 'Morning!')?Good Morning!Good + Morning!Good Morning!'Good Morning!'30s