AP Computer Science A has one of the higher 5-rates among AP exams — about 27%. That doesn't mean it's easy; it means the students who take it tend to be well-prepared. The exam is 40 MCQ (90 min) + 4 FRQs (90 min). With the right approach, the FRQ section is very learnable.
The Four FRQ Types (They Repeat Every Year)
- Methods and Control Structures: Write methods using loops, conditionals, and existing methods. Tests whether you can write working code from scratch.
- Class: Design a class — write constructors, instance variables, and methods. Know the difference between instance variables and local variables.
- Array/ArrayList: Manipulate 1D arrays or ArrayLists. Common patterns: traversal, search, filter, and count.
- 2D Array: Traverse and manipulate a 2D array (row-major vs column-major). Know how to access rows and columns with nested loops.
The ArrayList vs Array Decision
Use an ArrayList when the size is unknown or changes. Use a plain array when the size is fixed. On the FRQ, if you use the wrong one, you lose points. Know: list.get(i) vs arr[i], list.size() vs arr.length, and list.add() / list.remove() (which shifts indices — a common trap).
Most-Tested Java Concepts
- String methods:
substring(start, end), indexOf(str), length(), equals() (never == for Strings)
- Inheritance:
super() constructor calls, method overriding, polymorphism — a subclass reference stored as a superclass type
- Interfaces: What they guarantee (method signatures, no implementation), why they're used for polymorphism across unrelated classes
- Traversal traps: Off-by-one errors in
for loops; removing elements from an ArrayList while iterating (use index-based loop and decrement after remove)
MCQ Strategy
AP CSA MCQ frequently tests code tracing — following a program step by step to predict output. Practice this deliberately: cover the code below the current line, predict what each variable holds after each statement executes. The most common errors are forgetting that Java passes primitives by value (not reference) and miscounting loop iterations for while vs for.
Practice AP CS A Questions on AimFive · AP CS A Key Terms · All AP Courses
AP and Advanced Placement are trademarks of College Board. AimFive is not affiliated with or endorsed by College Board.