Log in
Sign up for FREE
arrow_back
Library

Scratch Retest

star
star
star
star
star
Last updated about 2 years ago
5 questions
1
1
1
1
1
Question 1
1.

What is output by the code to the below?

set a to 99
if a < 99
say "abc"
say "def"

Question 2
2.

Question 3
3.

What is output by the code to the below?

set a to 55
repeat 5
change a by -5
say a

Question 4
4.

What is output by the code to the below?

set c to 10
repeat until c > 49
change c by 8
say c

Question 5
5.

A. 99
B. abc
C. def
D. abcdef
E. abcabc
What is output by the code to the below?

set d to 80
set e to 60
if d > 90
say "abc"
if e < 95
say "def"
D. def
E. abcdef
A. 30
B. 45
C. 40
D. 35
E. 50
A. 10
B. 27
C. 43
D. 50
E. 57
What is output by the code to the below?

set e to 0
set count to 0
repeat until e > 90
if e < 50 change e by 15
else
change e by 9
change count by 1
say count
D. 9
E. 7