Micro:bit Programming Concepts

Micro:bit Programming Concepts

Assessment

Flashcard

Education

9th - 12th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

8 questions

Show all answers

1.

FLASHCARD QUESTION

Front

The symbol that assigns ("gives") a variable a value

Back

=

2.

FLASHCARD QUESTION

Front

What piece of code must be used at the beginning of every micro:bit Python program? Options: from microbit import *, while True, Import Microbit, From Microbit Import

Back

from microbit import *

3.

FLASHCARD QUESTION

Front

Python is different from many programming languages because it uses this as part of the language's syntax

Back

indentation

4.

FLASHCARD QUESTION

Front

Simple small computers like the micro:bit that can only run one program at a time are called

Back

microcontrollers

5.

FLASHCARD QUESTION

Front

Which symbol creates a comment in Python? Options: :, //, *, #

Back

#

6.

FLASHCARD QUESTION

Front

The microbit has a reset button.

Back

True

7.

FLASHCARD QUESTION

Front

What is the purpose of using a method in python? (select all that apply)

Back

allows you to repeat code by calling or invoking the method

8.

FLASHCARD QUESTION

Front

Which of the following Python code creates a kind of Forever Loop in your code?
Options: while TRUE:, If button_a.is_pressed, for i in range(4):, while number < 10:

Back

while TRUE: