Recent Question Answers
Practice Test Results
Stats
| Accuracy | Question | Correct/Attempt | Last Answer |
|---|---|---|---|
| 100% | A student is developing an educational app about cybersecurity. Which feature would be most effective in teaching users to identify sophisticated phishing attempts? AP Computer Science Principles / Big Idea 5: Impact of Computing | 1/1 | May 6, 2026 14:28 |
| 100% | A website tracks users' browsing habits to personalize content. What privacy concern does this raise? AP Computer Science Principles / Big Idea 5: Impact of Computing | 1/1 | May 6, 2026 14:28 |
| 100% | Which characteristic of freeware or shareware downloads MOST significantly increases the risk of malware infection? AP Computer Science Principles / Big Idea 5: Impact of Computing | 1/1 | May 6, 2026 14:28 |
| 100% | All of the following are true about data mining except: AP Computer Science Principles / Big Idea 5: Impact of Computing | 1/1 | May 6, 2026 14:27 |
| 0% | What unintended consequence might arise from machine learning in business? AP Computer Science Principles / Big Idea 5: Impact of Computing | 0/1 | May 6, 2026 13:52 |
| 100% | What is the primary limitation of increasing parallel computing in a solution? AP Computer Science Principles / Big Idea 4: Computer Systems and Networks | 1/1 | May 6, 2026 13:51 |
| 100% | Which of the following best defines an operational failure? AP Computer Science Principles / Big Idea 4: Computer Systems and Networks | 1/1 | May 6, 2026 13:51 |
| 100% | Why might distributed computing be necessary for certain tasks? AP Computer Science Principles / Big Idea 4: Computer Systems and Networks | 1/1 | May 6, 2026 13:51 |
| 100% | What does scalability refer to in software engineering? AP Computer Science Principles / Big Idea 4: Computer Systems and Networks | 1/1 | May 6, 2026 13:51 |
| 50% | A data processing application has been refactored to use parallel computing. The execution time decreased from 100 seconds to 40 seconds when using 4 processors. What percentage of the original code was inherently sequential? AP Computer Science Principles / Big Idea 4: Computer Systems and Networks | 1/2 | May 6, 2026 13:50 |
| 100% | In a traffic simulation program, a variable 'currentSpeed' is used to adjust the speed of a car based on traffic conditions. What aspect of programming does 'currentSpeed' best represent? AP Computer Science Principles / Big Idea 3: Algorithms and Programming | 1/1 | May 6, 2026 13:49 |
| 100% | Consider the following algorithm:
```
function process(listA, listB){
result = []
i = 0
j = 0
while (i < LENGTH(listA) AND j < LENGTH(listB)) {
if (listA[i] < listB[j]) {
APPEND(result, listA[i])
i = i + 1
} else {
APPEND(result, listB[j])
j = j + 1
}
}
while (i < LENGTH(listA)) {
APPEND(result, listA[i])
i = i + 1
}
while (j < LENGTH(listB)) {
APPEND(result, listB[j])
j = j + 1
}
return result
}
```
What is returned by process([2, 5, 8], [1, 3, 7])? AP Computer Science Principles / Big Idea 3: Algorithms and Programming | 1/1 | May 6, 2026 13:49 |
| 100% | A student is developing a program for a grocery store to manage inventory. They decide to use variables with descriptive names like \"totalFruits\" and \"vegetableCount\". What is a positive impact of this decision? AP Computer Science Principles / Big Idea 3: Algorithms and Programming | 1/1 | May 6, 2026 13:48 |
| 0% | Which relational expression would evaluate to true when either x is less than 10 or y is greater than or equal to 20, but not both conditions? AP Computer Science Principles / Big Idea 3: Algorithms and Programming | 0/1 | May 6, 2026 13:47 |
| 100% | All of the following are true about searching algorithms except: AP Computer Science Principles / Big Idea 3: Algorithms and Programming | 1/1 | May 6, 2026 13:47 |
| 100% | A student is tasked with reducing the bandwidth needed for video transmission. Which compression method should they use? AP Computer Science Principles / Big Idea 2: Data | 1/1 | May 6, 2026 13:46 |
| 100% | Why might lossy compression be preferred over lossless compression in certain scenarios? AP Computer Science Principles / Big Idea 2: Data | 1/1 | May 6, 2026 13:46 |
| 50% | A student is designing a database and decides to store images as binary data within the database. What is a potential positive impact of this decision? AP Computer Science Principles / Big Idea 2: Data | 1/2 | May 6, 2026 13:45 |
| 100% | A data analyst is examining a dataset where each record contains both raw data and metadata. Which statement BEST describes the relationship between the two? AP Computer Science Principles / Big Idea 2: Data | 1/1 | May 6, 2026 13:44 |
| 100% | When analyzing a large dataset from social media for trends, what is the first step a student should take? AP Computer Science Principles / Big Idea 2: Data | 1/1 | May 6, 2026 13:44 |
Items per page:
20
1 – 20 of 51
APFIVE