Unit 1: Creative Development
CS Principles · Unit 1 · Paper 2

Creative Development unit test

A test on this unit alone, marked as a percentage and a letter grade — for the test your class is actually sitting, rather than for May. Answer everything, then submit once: seeing the answer to question 3 before attempting question 4 makes the final percentage meaningless.

Each paper is built from this unit’s 24 terms and is the same for everyone, so a teacher can assign “Unit 1, Paper 2” and every student sits the identical test. Multiple choice is marked objectively; the written sections you mark yourself against the model answer and rubric.
Suggested time 33 min 30 points0/17 attempted
1

Program output

2

Test case

3

Create Performance Task

4

Program

5

Comment

6

Overflow error

7

Reducing bias in development

8

Program input

9

Collaboration

10

Run-time error

11

Debugging

12

Why input matters to program behavior

Short answer 1. Define or explain: Incremental development

3 pts

Short answer 2. Define or explain: Development process for the exam

3 pts

Short answer 3. Define or explain: Syntax error

3 pts

Short answer 4. Define or explain: Why test with edge cases

3 pts

Free response

6 pts

This course has no free-response prompt tagged to this unit, so one from elsewhere in the course is used. It is still worth writing — the skill transfers.

A team is writing a program that repeatedly needs the average of a list of numbers: once for quiz scores, once for homework scores, and once for attendance percentages. Their first draft copies the same six lines of code into three places.

Write a procedure average(numbers) in AP-style pseudocode that returns the average of the values in a list, returning 0 for an empty list. List indexes begin at 1.

Explain how defining this procedure manages the complexity of the program.

Explain the role of the parameter and of the return value, and why the procedure is more useful with a parameter than if it always used one fixed global list.

The team then wants a procedure highestAverage that takes three lists and returns the largest of their averages. Describe how it should be written, and name the abstraction it depends on.