1/9
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
|---|
No study sessions yet.
In which of the following stages of the development process is a team MOST likely to interview a potential user of an app?
A. investigating and reflecting
B. designing
C. prototyping
D. testing
A. investigating and reflecting
Which of the following best describes the purpose of a design specification?
A. Tracking errors that arise through user testing
B. Documenting comments that will need to be added to a program
C. Describing the requirements for how a program will work or users will interact with it
D. Listing detailed questions that will be asked of users during interviews
C. Describing the requirements for how a program will work or users will interact with it
What will the "background-color" of the "topButton" be when the program is finished running?
A. red
B. orange
C. blue
D. green
C. blue
If the user does NOT click the button what color will "topButton" be when this program finishes running?
A. red
B. blue
C. green
D. orange
B. blue
The following program is run. Then the user clicks the "topButton" button ONCE. What will be displayed in the console?
A.
cat
bird
dog
B.
dog
cat
bird
C.
cat
dog
bird
D.
bird
cat
dog
C.
cat
dog
bird
The following program is run. Then the user clicks the "bottomButton" ONCE and then clicks the "topButton" ONCE. What will be displayed in the console?
A.
aaa
bbb
ccc
B.
aaa
ccc
bbb
C.
bbb
aaa
ccc
D.
ccc
bbb
aaa
D.
ccc
bbb
aaa
The following program is run. Then the user clicks the "bottomButton" TWO TIMES. What will be displayed in the console?
A.
aaa
bbb
ccc
ccc
ddd
B.
bbb
ddd
ccc
ccc
C.
bbb
ddd
aaa
aaa
D.
bbb
ccc
ccc
ddd
B.
bbb
ddd
ccc
ccc
Which line of code in this program is MOST likely to result in an error?
A. Line 1
B. Line 2
C. Line 3
D. Line 4
B. Line 2
Which of the following BEST describes the differences between sequential and event-driven programming?
A. In sequential programming commands run one at a time. In event-driven programming all commands run at the same time.
B. In sequential programming commands run faster than in event-driven programming.
C. In sequential programming each command is run many times in sequence. In event-driven programming all commands are run a single time as an event.
D. In sequential programming commands run in the order they are written. In event-driven programming some commands run in response to user interactions or other events.
D. In sequential programming commands run in the order they are written. In event-driven programming some commands run in response to user interactions or other events.
Which of the following is NOT a reason to include comments in programs
A. Comments help the computer decide whether certain components of a program are important.
B. Comments help programmers debug issues in their own code
C. Comments help document how code was written for other programmers to use
D. Comments enable programmers to track their work throughout the development process
A. Comments help the computer decide whether certain components of a program are important.