Blockly Programming Quiz [Level 1B]

Blockly Programming Quiz [Level 1B]

7th Grade

9 Qs

quiz-placeholder

Similar activities

3TDS - Programação Backend - Mapas

3TDS - Programação Backend - Mapas

12th Grade

10 Qs

MP Pertemuan 01

MP Pertemuan 01

University

10 Qs

Cloud Computing and web services Practice Quizes

Cloud Computing and web services Practice Quizes

University

10 Qs

Basic ICT Course

Basic ICT Course

9th Grade

14 Qs

Data Transmission and Errors

Data Transmission and Errors

7th Grade

11 Qs

Casa de Peixes

Casa de Peixes

10th Grade

12 Qs

Multi file website HTML-CSS

Multi file website HTML-CSS

9th Grade

10 Qs

MongoDB Concepts 2

MongoDB Concepts 2

University

10 Qs

Blockly Programming Quiz [Level 1B]

Blockly Programming Quiz [Level 1B]

Assessment

Quiz

Information Technology (IT)

7th Grade

Practice Problem

Medium

Created by

imam ibrahim

Used 1+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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