Recent Question Answers
Practice Test Results
Stats
| Accuracy | Question | Correct/Attempt | Last Answer |
|---|---|---|---|
| 100% | Consider the following procedure:
```
PROCEDURE calculateDiscount(price, percent)
{
IF (percent > 50)
{
RETURN price * 0.5
}
discount <- price * (percent / 100)
RETURN price - discount
}
```
What is returned when `calculateDiscount(80, 60)` is called? AP Computer Science Principles / Big Idea 3: Algorithms and Programming | 1/1 | May 14, 2026 15:52 |
| 100% | What is the binary equivalent of the decimal number 255? AP Computer Science Principles / Big Idea 2: Data | 1/1 | May 14, 2026 15:52 |
| 100% | A data analyst writes a program that clusters customers based on their purchasing behavior. Which of the following represents the most significant insight gained through this transformation? AP Computer Science Principles / Big Idea 2: Data | 1/1 | May 14, 2026 15:52 |
| 100% | What does a detailed program description include? AP Computer Science Principles / Big Idea 1: Creative Development | 1/1 | May 14, 2026 15:52 |
| 100% | Which scenario best demonstrates the benefit of fault tolerance in the context of the Internet's packet routing? AP Computer Science Principles / Big Idea 4: Computer Systems and Networks | 1/1 | May 14, 2026 15:52 |
| 100% | As a network administrator, you've noticed an unusual amount of network traffic that could indicate a cyberattack. What is the first action you should take to protect the network? AP Computer Science Principles / Big Idea 4: Computer Systems and Networks | 1/1 | May 14, 2026 15:52 |
| 100% | A distributed computing system is processing image files. Solution X processes 100 images in 50 seconds using 2 computers. Solution Y processes 100 images in 40 seconds using 4 computers. Which solution demonstrates better computational efficiency? AP Computer Science Principles / Big Idea 4: Computer Systems and Networks | 1/1 | May 14, 2026 15:52 |
| 100% | A software company's data center was affected by a solar flare, causing data loss. What could have mitigated the impact of this event? AP Computer Science Principles / Big Idea 4: Computer Systems and Networks | 1/1 | May 14, 2026 15:52 |
| 100% | A program performs matrix multiplication on two 1000×1000 matrices. If this task is divided among 4 processors using parallel computing, which statement is most accurate? AP Computer Science Principles / Big Idea 4: Computer Systems and Networks | 1/1 | May 14, 2026 15:52 |
| 100% | Which of the following best describes open source software? AP Computer Science Principles / Big Idea 5: Impact of Computing | 1/1 | May 14, 2026 15:52 |
| 100% | Which visualization technique is useful for understanding data flow in a program? AP Computer Science Principles / Big Idea 1: Creative Development | 1/1 | May 14, 2026 15:52 |
| 100% | In what way does the inclusion of documentation in programming contribute to the collaborative nature of software development? AP Computer Science Principles / Big Idea 1: Creative Development | 1/1 | May 14, 2026 15:52 |
| 100% | A photo loses some detail when compressed. Which compression method was likely used? AP Computer Science Principles / Big Idea 2: Data | 1/1 | May 14, 2026 15:52 |
| 0% | Which computing innovation led to significant advances in the field of medicine? AP Computer Science Principles / Big Idea 5: Impact of Computing | 0/1 | May 14, 2026 15:52 |
| 100% | A mobile device shows full cellular signal but cannot load websites. Which component in the Internet access chain is MOST likely failing? AP Computer Science Principles / Big Idea 4: Computer Systems and Networks | 1/1 | May 14, 2026 15:52 |
| 100% | Which of the following is an example of an overflow error not involving multiplication? AP Computer Science Principles / Big Idea 1: Creative Development | 1/1 | May 14, 2026 15:52 |
| 100% | Which scenario correctly illustrates the concept of a network path as defined in AP CSP? AP Computer Science Principles / Big Idea 4: Computer Systems and Networks | 1/1 | May 14, 2026 15:52 |
| 0% | Consider the pseudocode below:
```pseudocode
scores = [85, 92, 78, 90, 88]
result = scores[2]
```
What is the value of `result` after execution? AP Computer Science Principles / Big Idea 3: Algorithms and Programming | 0/1 | May 14, 2026 15:52 |
| 100% | A bank is implementing a new online banking system. Which authentication method would be LEAST vulnerable to compromise by keylogging software? AP Computer Science Principles / Big Idea 5: Impact of Computing | 3/3 | May 14, 2026 15:52 |
| 0% | Which scenario best illustrates the tension between open access to information and intellectual property rights in the digital age? AP Computer Science Principles / Big Idea 5: Impact of Computing | 0/1 | May 14, 2026 15:52 |
Items per page:
20
1 – 20 of 249
APFIVE