wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Micro:Bit Quiz Unit 3

Total questions: 20

Worksheet time: 10mins

Name
Class
Date
1.

What are the gold circles at the bottom of the micro:bit called?

a)

Rings

b)

Pins

c)

Volts

d)

Activators

2.

How do you activate a Pin Press Event?

a)

Press A and B at the same time

b)

Zap the micro:bit with an electric shock

c)

Touch the pin and Ground at the same time

d)

Tilt the micro:bit

3.

What engineering concept allows the pins to be activated?

a)

Gravity: a force pulls on the pins, activating them when we hold the micro:bit a certain way

b)

Friction: energy is generated when we rub against the pins, causing them to activate

c)

Magnetism: the pins are magnetic, so we use a magnet held near them to activate

d)

Electricity: we touch the pin and Ground, we complete the circuit by conducting electricity through the device

4.

When do we use Conditionals (IF/ELSE) in our code?

a)

When we want something to happen if some condition is true

b)

When we want to repeat the same code over and over

c)

When we want to package multiple lines of code into a single, reusable block.

d)

When we don't know what the code is going to do next

5.

What is the difference between "IF" and "ELSE IF"?

a)

"ELSE IF" always starts a conditional statement. "IF" is used when we want to check for other conditions besides the first

b)

Nothing, either can be used wherever and it won't make a difference.

c)

"IF" always starts a conditional statement. "ELSE IF" is used when we want to check for other conditions besides the first

d)

The code inside the "ELSE IF" block only happens if no other condition was true

6.

Which of the following is an example of a condition (something we'd check for in an IF/ELSE conditional statement)

a)

show string "Hello World"

b)

temperature > 32

c)

repeat 4 times

d)

on start

7.

Which of the following is NOT an example of a condition (something we'd check for in a conditional statement)?

a)

ammo < 0

b)

show string "Game Over!"

c)

activated = True

d)

tilt > 200

8.

Which sensor on the micro:bit detects the brightness in the surrounding area?

a)

Warp Drive

b)

Thermometer

c)

Logo

d)

Light Sensor

9.

Which sensor can read the temperature of the room?

a)

Thermometer

b)

Light Sensor

c)

Quantum Core

d)

Accelerometer

10.

Which of the following is an example of an ANALOG data source?

a)

A button

b)

Pin Press

c)

X-Axis Tilting

d)

A+B button

11.

Which of the following is an example of a DIGITAL data source?

a)

B Button

b)

Y-Axis Tilt

c)

Temperature

d)

Brightness

12.

This is the basic flow all physical computing devices follow. What is the missing middle step called?

a)

Sensing

b)

Control

c)

Process

d)

Software

13.

The MakeCode interface is shown here. What is the area highlighted by the red square?

a)

The simulation of the micro:bit

b)

A drawing board to sketch ideas

c)

Where we drag the code blocks to build a program

d)

Nothing, it's just extra space

14.

The MakeCode interface is shown here. What is the area highlighted by the red square?

a)

Where we drag the code blocks to build a program

b)

The virtual simulation of the micro:bit

c)

A drawing board to sketch ideas

d)

Nothing, it's just extra space

15.

The MakeCode interface is shown here. What is the area highlighted by the red square?

a)

Where the code blocks are stored, and can be dragged to the coding area

b)

Nothing, it's just extra space

c)

The help manual

d)

It's a list of full, pre-built programs

16.

In which category can I find the block needed to do something when a Pin is pressed (The "on pin pressed" block)?

a)

Logic

b)

LED

c)

Radio

d)

Input

17.

In which category can I find the blocks needed for conditional (IF/ELSE) statements?

a)

Logic

b)

Basic

c)

Math

d)

Variables

18.

I want to use the values from the thermometer and light sensors. In which category can I find these blocks?

a)

Radio

b)

Loops

c)

Input

d)

Extensions

19.

True or False: An Analog data source can only have two values: ON or OFF

a)

True

b)

False

20.

True or False: The number the accelerometer outputs is the degree of the angle that the micro:bit is tilted

a)

True

b)

False