Wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Code.org Unit 3 Post-Assessment: Intro to App Design

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.
1. Which of the actions below would usually be helpful in designing and developing an app? 1. Interviewing potential app users 2. Writing the entire program code before testing any parts of it 3. Observing users attempt to use the app
a)
Numbers1 & 2
b)
Numbers 1 & 3
c)
Numbers 2 & 3
d)
Numbers 1, 2, & 3
2.
2. Which of the following best describes the purpose of a design specification?
a)
A. Tracking errors that arise through user testing
b)
B. Documenting comments that will need to be added to a program
c)
C. Describing the requirements for how a program will work or users will interact with it
d)
D. Listing detailed questions that will be asked of users during interviews
3.
3. What will the “background-color” of the “topButton” be when the program is finished running?
a)
A. red
b)
B. orange
c)
C. blue
d)
D. green
4.
4. If the user does NOT click the button what color will “topButton” be when this program finishes running?
a)
A. Red
b)
B. Blue
c)
C. Green
d)
D. Orange
5.
5. The following program is run. Then the user clicks the "topButton" button ONCE. What will be displayed in the console?
a)
A. cat bird dog
b)
B. dog cat bird
c)
C. cat dog bird
d)
D. bird cat dog
6.
6. 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)
A. cow pig chicken
b)
B. cow chicken pig
c)
C. pig cow chicken
d)
D. chicken pig cow
7.
7. The following program is run. Then the user clicks the “bottomButton” TWO TIMES. What will be displayed in the console?
a)
A. apple banana cherry cherry dragon fruit
b)
B. banana dragon fruit cherry cherry
c)
C. banana dragon fruit apple apple
d)
D. banana cherry cherry dragon fruit
8.
8. Which line of code in this program is MOST likely to result in an error?
a)
A. Line 1
b)
B. Line 2
c)
C. Line 3
d)
D. Line 4
9.
9. Which of the following BEST describes the differences between sequential and event-driven programming?
a)
A. In sequential programming commands run one at a time. In event-driven programming all commands run at the same time.
b)
B. In sequential programming commands run faster than in event-driven programming.
c)
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)
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.
10.
10. Which of the following is NOT a reason to include comments in programs?
a)
A. Comments help the computer decide whether certain components of a program are important.
b)
B. Comments help programmers debug issues in their own code
c)
C. Comments help document how code was written for other programmers to use
d)
D. Comments enable programmers to track their work throughout the development process