wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Code.org Unit 5 Vocab Quiz 1

Total questions: 10

Worksheet time: 8mins

Name
Class
Date
1.

The visual elements of a program through which a user controls or communicates with the application. Often abbreviated UI.

a)

Callback Function

b)

User Interface

c)

Debugging

d)

Event Handler

2.

A function specified as part of an event listener; it is written by the programmer but called by the system as the result of an event trigger.

a)

UI

b)

Event Handler

c)

Callback Function

d)

Turtle

3.

A program designed to run blocks of code or functions in response to specified events (e.g. a mouse click)

a)

Event-driven Program

b)

Event Handler

c)

Beaver Programming

d)

Event Listener

4.

An action that causes something to happen.

a)

Debugger

b)

Data Type

c)

Variable

d)

Event

5.

All values in a programming language have a "type" - such as a Number, Boolean, or String - that dictates how the computer will interpret it.

a)

Data Type

b)

Variable

c)

Operation

d)

Bug

6.

Any valid unit of code that resolves to a value.

a)

Variable

b)

Expression

c)

Data

d)

Code

7.

The common programming structure that implements "conditional statements".

a)

"Maybe" Statement

b)

"When" Statement

c)

"If" Statement

d)

"Could" Statement

8.

Dictates what portions of the code can "see" or use a variable, typically derived from where the variable was first created.

a)

Variable Room

b)

Variable Travel

c)

Variable Space

d)

Variable Scope

9.

A variable whose scope is "global" to the program, it can be used and updated by any part of the code. Its global scope is typically derived from the variable being declared (created) outside of any function, object, or method.

a)

Global Variable

b)

Local Variable

c)

Wide Variable

d)

Limited Variable

10.

A variable with local scope is one that can only be seen, used and updated by code within the same scope. Typically this means the variable was declared (created) inside a function -- includes function parameter variables.

a)

Short Variable

b)

Small Variable

c)

Global Variable

d)

Local Variable