This is all inputs and outputs that allow a user to interact with a piece of software. ______ can include a variety of forms such as buttons, menus, images, text, and graphics.
User Interface
Finding and fixing problems in an algorithm or program
Debugging
Tell me this in Deci
10001
17
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
">
The following program is run. Then the user clicks the “bottomButton” TWO TIMES. What will be displayed in the console?
A. apple banana cherry cherry dragon fruit
B. banana dragon fruit cherry cherry
C. banana dragon fruit apple apple
D. banana cherry cherry dragon fruit
B. banana dragon fruit cherry cherry
This is any data that are sent from a program to a device. Can come in a variety of forms, such as tactile interaction, audio, visuals, or text.
Output
An ______ is associated with an action and supplies input data to a program. Can be generated when a key is pressed, a mouse is clicked, a program is started, or by any other defined action that affects the flow of execution.
Event:
00101011
43

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
">
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
This is a collection of program statements. ____ run (or “execute”) one command at a time.
Program
This __________ is the steps or phases used to create a piece of software. Typical phases include investigating, designing, prototyping, and testing
Development process:
11111111
255

Which of the above actions would usually be helpful in designing and developing an app?
A. I and II only
B. I and III only
C. II and III only
D. I, II, and III
B. I and III only
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.
_____ is some program statements run when triggered by an event, like a mouse click or a key press
Event Driven Programming
This ______ makes program statements run in order, from top to bottom.
Sequential Programming
Tell me in Binary
513
1 0 0 0 0 0 0 0 0 1
">
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
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.
This is a __________form of program documentation written into the program to be read by people and which do not affect how a program runs.
runs as // in javascript
Comment
________ data is that are sent to a computer for processing by a program. Can come in a variety of forms, such as tactile interaction, audio, visuals, or text.
Input:
Tell me:
127
00111111

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
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