NEW
Font size
WorksheetsRevision Checkpoint 1-Grade7
Total questions: 6
Worksheet time: 3mins
A method used to break down problems into smaller parts. What is this called?
Selection
Repetition
Decomposition
Algorithm
Which variable below is the best to store a person’s name?
str_name
int_name
bln_name
flt_name
Which one is an example of pseudocode?
Input an age from the user
x = 5+20
print("Hello, Zachariah!")
for count in range(20):
Which compound conditional code should go in the yellow box?
if int_age >=18 and int_age<=12:
if int_age >=12 and int_age<=18:
if int_age >=15 and int_age<=28:
int_age >=12 and int_age<=18
What do you use programming libraries for?
You use libraries to remove functionality from your code.
You use libraries to make your code longer.
You use libraries to allow 2 conditionals at the same time.
You use libraries to put already made code into your program.
Why is it important to get feedback on your project?
Feedback helps you find ways to make your project worse
Feedback makes your project more expensive
Feedback will remove all the bugs in your code.
Feedback helps you find ways to improve your project.
