Blockly Programming Quiz [Level 1B]

Blockly Programming Quiz [Level 1B]

7th Grade

9 Qs

quiz-placeholder

Similar activities

12 Principles of Animation

12 Principles of Animation

8th Grade

12 Qs

MIS-RODOCODO

MIS-RODOCODO

1st Grade - University

8 Qs

CSS-ի վերջնական քննություն

CSS-ի վերջնական քննություն

6th - 8th Grade

13 Qs

asesmen awal

asesmen awal

9th Grade

10 Qs

Python Gaming L3

Python Gaming L3

9th - 12th Grade

10 Qs

แบบทดสอบscratch

แบบทดสอบscratch

7th Grade - University

10 Qs

Karel Conditions

Karel Conditions

6th - 8th Grade

13 Qs

12 Principles of Animation

12 Principles of Animation

8th Grade

12 Qs

Blockly Programming Quiz [Level 1B]

Blockly Programming Quiz [Level 1B]

Assessment

Quiz

Information Technology (IT)

7th Grade

Medium

Created by

imam ibrahim

Used 1+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of this code? [Repeat 2 times] → [Repeat 3 times] → [Move Forward]

Move forward 3 steps

Move forward 5 steps

Move forward 6 steps

Move forward 2 steps

Answer explanation

Explanation: 3 inner steps x 2 outer loops = 6 steps

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which block structure correctly checks if a key is pressed AND the path is clear before moving?

If (Key Pressed)

If (Path Clear)

If (Key Pressed AND Path Clear)

Repeat Until (Path Clear)

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which block type helps your program make decisions?

Loop

Event

Conditional

Motion

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will this code do? [If Path Clear] → [Move Forward] → [Else] → [Turn Right]

Always move forward

Move forward only if the path is clear, otherwise turn right

Always turn right

Do nothing

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement is true about nested loops?

They make code easier to understand

They allow repeating patterns inside other repeating patterns

They stop all code from running

They only work with music blocks

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What’s the error in this logic? [Repeat Until Touching Goal] → [Move Forward] → [If Obstacle Ahead] → [Move Forward]

The character will skip obstacles

The goal will disappear

It moves forward even if an obstacle is there

The repeat will never stop

7.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

You want your character to move in a square. Which logic is correct?

Repeat 4 → Move Forward

Repeat 4 → Move Forward → Turn Right

Repeat 2 → Move Forward → Turn Right

Move Forward → Turn Right

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If you use a Forever loop without a stop condition, what might happen?

The program finishes quickly

The character rests

The program runs endlessly

The blocks will disappear

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You want your character to collect 5 diamonds placed on a path. Which block structure works best?

If Touching Diamond → Say “Diamond!”

Repeat 5 → Move Forward → Collect

Repeat Until No More Diamonds → Move Forward

Move Forward → Collect