and CORRECT Answers
The idea of creating a computer program to solve a complex task by breaking it down into a
list of simple instructions is known as _________. - CORRECT ANSWER✔✔- top-down
design
A sequence of instructions that tell the computer what to do is known as a _________? -
CORRECT ANSWER✔✔- computer program
A sketch in a storyboard is a representation of a(n) ___________ in the animation. -
CORRECT ANSWER✔✔- state
Actions to be performed in programs are known as _____________. - CORRECT
ANSWER✔✔- instructions
Creating a computer program is a four-step process. Label the following steps in the correct
order, so that the first step is labeled 1, the second step is labeled 2, and so on. - CORRECT
ANSWER✔✔- 1. Read the scenario
2. Design
3. Implement
4. Test
A boolean value is ____________. - CORRECT ANSWER✔✔- either true or false
An item of information that must be supplied in a method call so that Alice can execute a
specified action is formally known as a(n) _____________. - CORRECT ANSWER✔✔-
argument
, Before a list can be used in a program, _____________. - CORRECT ANSWER✔✔- the list
must be created by making a list variable
A list is one of the most popular ways to _______________. - CORRECT ANSWER✔✔-
organize information
Select all applicable answers. Iteration through a list is sometimes called __________ a list. -
CORRECT ANSWER✔✔- traversing, walking
What is a billboard in Alice? - CORRECT ANSWER✔✔- a 2D image added to a virtual
world
A list search would most likely involve which control structures? - CORRECT
ANSWER✔✔- for all in order, if
A(n) __________ is a common list operation used in programming. Its purpose is to iterate
through a list of items, one item at a time, and check each one to see if it has exactly what we
are looking for. - CORRECT ANSWER✔✔- list search
In programming, an organizing structure is referred to as a(n) ___________. - CORRECT
ANSWER✔✔- data structure
To "iterate through a list" means to ______________. - CORRECT ANSWER✔✔- do the
same thing for all the items in a list
Comments are NOT a basic part of writing a computer program, only the code is essential. -
CORRECT ANSWER✔✔- False
An instruction is composed of _____________. - CORRECT ANSWER✔✔- a method name
and potentially multiple arguments
Conditional execution and repetition in a program are implemented by using programming
statements known as control structures. - CORRECT ANSWER✔✔- True