Answers 2024
1. 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
_________. - ANS -top-down design
2. A sequence of instructions that tell the computer what to do is
known as a _________? - ANS -computer program
3. A sketch in a storyboard is a representation of a(n) ___________
in the animation. - ANS -state
4. Actions to be performed in programs are known as
_____________. - ANS -instructions
,5. 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. - ANS -1. Read
the scenario
2. Design
3. Implement
4. Test
6. A Boolean value is ____________. - ANS -either true or false
,7. 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) _____________. - ANS -argument
8. Before a list can be used in a program, _____________. - ANS -
the list must be created by making a list variable
9. A list is one of the most popular ways to _______________. -
ANS -organize information
10. Select all applicable answers. Iteration through a list is
sometimes called __________ a list. - ANS -traversing, walking
11. What is a billboard in Alice? - ANS -a 2D image added to a
virtual world
, 12. A list search would most likely involve which control
structures? - ANS -for all in order, if
13. 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. - ANS -list search
14. In programming, an organizing structure is referred to as
a(n) ___________. - ANS -data structure
15. To "iterate through a list" means to ______________. - ANS
-do the same thing for all the items in a list