What will be the output of the following code?
number1 = 5
number2 = 10
sum = number1 + number2
print(sum)

Coding 5th Grade #1

Flashcard
•
Mathematics
•
5th Grade
•
Hard

Kimberly Gowan
FREE Resource
Student preview

10 questions
Show all answers
1.
FLASHCARD QUESTION
Front
Back
15
Answer explanation
The code adds number1 (5) and number2 (10) together. The sum is calculated as 5 + 10, which equals 15. Therefore, the output of the code will be 15.
2.
FLASHCARD QUESTION
Front
What will be printed when the following code is executed?
```
temperature = 25
if temperature > 20:
print("It's warm")
else:
print("It's cold")
```
Back
It's warm
Answer explanation
The code checks if the temperature (25) is greater than 20. Since this condition is true, it executes the first print statement, which outputs "It's warm". Therefore, the correct answer is "It's warm".
3.
FLASHCARD QUESTION
Front
What will be the output of the modified code?
number = 8
if number > 10:
print("Small number")
else:
print("Large number")
Back
Large number
Answer explanation
In the modified code, the condition checks if number (8) is greater than 10, which is false. Therefore, the else block executes, resulting in the output 'Large number'.
4.
FLASHCARD QUESTION
Front
What is the purpose of a conditional statement in a code?
Back
To make decisions based on certain conditions
Answer explanation
A conditional statement allows the code to execute different actions based on whether a specified condition is true or false. This is essential for decision-making in programming, making 'To make decisions based on certain conditions' the correct choice.
5.
FLASHCARD QUESTION
Front
What will be the new output if the condition is changed to `age > 10` and age is 12?
Back
Teenager
Answer explanation
With the condition changed to 'age > 10', and age being 12, the condition evaluates to true. Therefore, the output will be 'Teenager'.
6.
FLASHCARD QUESTION
Front
Which of the following is a control structure in programming? Variable, Loop, Function, String
Back
Loop
Answer explanation
A loop is a control structure that allows repeated execution of a block of code based on a condition. Variables, functions, and strings are fundamental programming concepts but do not control the flow of execution like loops do.
7.
FLASHCARD QUESTION
Front
What will be printed when the following code is executed?
```
score = 85
if score >= 90:
print("Excellent")
elif score >= 75:
print("Good")
else:
print("Needs Improvement")
```
Back
Good
Answer explanation
The score is 85, which is not >= 90, so the first condition fails. The second condition, score >= 75, is true, so 'Good' is printed. Thus, the output is 'Good'.
Create a free account and access millions of resources
Similar Resources on Quizizz
8 questions
Python Variables

Flashcard
•
6th Grade
8 questions
Python Variables

Flashcard
•
6th Grade
10 questions
Robotics VEX Review

Flashcard
•
6th Grade
11 questions
Micro:bit Code Review

Flashcard
•
6th Grade
13 questions
Python: Print Function, Data Types, and Variables

Flashcard
•
6th Grade
4 questions
Chapter 1: Data Science

Flashcard
•
4th Grade
7 questions
Sphero: Synchronous and Asynchronous

Flashcard
•
6th Grade
6 questions
C Programming - Control Flow

Flashcard
•
KG
Popular Resources on Quizizz
15 questions
Multiplication Facts

Quiz
•
4th Grade
25 questions
SS Combined Advisory Quiz

Quiz
•
6th - 8th Grade
40 questions
Week 4 Student In Class Practice Set

Quiz
•
9th - 12th Grade
40 questions
SOL: ILE DNA Tech, Gen, Evol 2025

Quiz
•
9th - 12th Grade
20 questions
NC Universities (R2H)

Quiz
•
9th - 12th Grade
15 questions
June Review Quiz

Quiz
•
Professional Development
20 questions
Congruent and Similar Triangles

Quiz
•
8th Grade
25 questions
Triangle Inequalities

Quiz
•
10th - 12th Grade