PSPC - Week 11

PSPC - Week 11

University

6 Qs

quiz-placeholder

Similar activities

Python Basic

Python Basic

University

9 Qs

Computer Scratch lesson

Computer Scratch lesson

KG - Professional Development

10 Qs

PP Quiz1

PP Quiz1

University

11 Qs

java script

java script

University

10 Qs

Scratch (4th April)

Scratch (4th April)

KG - University

11 Qs

Day#6

Day#6

1st Grade - University

10 Qs

Hari 3 - Kuis Coding & Perkenalan AI (ARIF SEPTIANTO HIDAYAT)

Hari 3 - Kuis Coding & Perkenalan AI (ARIF SEPTIANTO HIDAYAT)

7th Grade - Professional Development

10 Qs

Scratch Pen Quiz

Scratch Pen Quiz

KG - University

10 Qs

PSPC - Week 11

PSPC - Week 11

Assessment

Quiz

Computers

University

Hard

Used 10+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What block should be used in order to increase a counter by 1 everytime?
Set Block
Change Block
Ask Block
Join Block

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image
What will the following Snap application do?
Say AAAHHHH 20 times and then grow bigger
Say AAAHHHH  and then grow bigger
Say AAAHHHH 20 times and grow bigger at the same time
Say AAAHHHH and grow bigger at the same time

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What block would you use to store a variable?
Move
Increase
Set
Ask

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image
What blocks would you need to create the following applciation?
Pen down, Repeat, turn and Move
Pen down, Repeat, Step, Turn
Draw, Repeat, Move, Turn
Pen down, Repeat, Move, Turn

5.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

READ var
REPEAT UNTIL  var  is equal to  0  
PRINT var
  var = var – 2
END REPEAT 
Please state what would be the output of the above pseudocode for var = 8.
8, 6, 4, 2, 0
8, 7, 6, 5, 4, 3, 2, 1
8, 6, 4, 2 
Nothing will be printed as the loop won’t be executed

6.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

READ a, b
REPEAT 3 times  
IF (a>b)  
a = a -1  
ELSE   b = b-2  
ENDIF END REPEAT
For a = 8 and b = 6, what are the values of a and b after the above pseudocode is executed?
 a = 6, b = 4
a = 5, b = 6
a = 8, b = 0