CodeSpace: Mission 2 & 3 Remix

CodeSpace: Mission 2 & 3 Remix

Assessment

Flashcard

Computers

7th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

9 questions

Show all answers

1.

FLASHCARD QUESTION

Front

The CodeX has four Red, Green, Blue (RGB) LEDs along the top edge. Select the numbers of each pixel. (Check all four that apply.) Options: 0, 1, 2, 3; 1, 2, 3, 4; 2, 4, 6, 7

Back

0, 1, 2, 3

2.

FLASHCARD QUESTION

Front

The CodeX library gives you a few colors to get started with. Select the colors that may be added: Magenta, Green, Cyan, Orange, White, Grey

Back

Magenta, Green, Cyan, Orange

3.

FLASHCARD QUESTION

Front

Which commands allows users to set pixel 0 to RED: from codex import * pixels.set(0, RED)

Back

from codex import * pixels.set(0, RED)

4.

FLASHCARD QUESTION

Front

You may set ______ in many different colors using pixels.set(0, RED) command like changing colors from GREEN to BLUE. (Remember, there are 4 pixels on your CodeX device)

Back

0-3

5.

FLASHCARD QUESTION

Front

Please select the CodeTrek icon.

Back

Media Image

6.

FLASHCARD QUESTION

Front

Which set of commands allows users to clear the Code-X device? Options: from codex import *
pixels.set(0, BLUE), from codex import *
display.fill(BLACK), from codex import *
display.fill(CLEAR), from codex import *
display.fill(ERASE)

Back

from codex import *
display.fill(BLACK)

7.

FLASHCARD QUESTION

Front

On line 2, which line of code will cause the CodeX to delay for 1 second before going to the next line? Options: delay (1), sleep (1), pause (1)

Back

sleep (1)

8.

FLASHCARD QUESTION

Front

A _____ could be a number, a color, or any other type of information your program uses.

Back

variable

9.

FLASHCARD QUESTION

Front

Instead of repeating a _____ number like 1 in your code, you can use a name instead. Read on to learn how much easier this makes it to change your delay!

Back

literal

Discover more resources for Computers