Log in
Sign up for FREE
arrow_back
Library

Scratch Retest

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

Question 2
2.

Question 3
3.

Question 4
4.

Question 5
5.

What is output by the code to the below?

set a to 99
if a < 99
say "abc"
say "def"
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"
C. abc
D. def
E. abcdef
What is output by the code to the below?

set a to 55
repeat 5
change a by -5
say a
C. 40
D. 35
E. 50
What is output by the code to the below?

set c to 10
repeat until c > 49
change c by 8
say c
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
C. 10
D. 9
E. 7