Preskoči na glavni sadržaj
Prijava
Sign up for FREE
arrow_back
Biblioteka

Scratch Retest

star
star
star
star
star
Posljednje ažuriranje about 2 years ago
5
1
1
1
1
1
Pitanje 1
1.

What is output by the code to the below?

set a to 99

if a < 99

say "abc"

say "def"

Pitanje 2
2.

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"

Pitanje 3
3.

What is output by the code to the below?

set a to 55

repeat 5

change a by -5

say a

Pitanje 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

Pitanje 5
5.

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