AP CSA Daily Practice
Unit 4 Cycle 2 Day 8: Insertion Sort: Worst Cas...
AP CSA insertion sort worst case practice. Count exact comparisons and shifts for specific input orderings.
Unit 4 Cycle 2 Day 8: Insertion Sort: Worst Cas...
AP CSA insertion sort worst case practice. Count exact comparisons and shifts for specific input orderings.
Unit 4 Cycle 2 Day 7: Selection Sort: Two-Pass ...
Advanced AP CSA selection sort two-pass trace practice. Show the complete array state after each pass of selection sort.
Unit 4 Cycle 2 Day 7: Selection Sort: Two-Pass ...
Advanced AP CSA selection sort two-pass trace practice. Show the complete array state after each pass of selection sort.
Unit 4 Cycle 2 Day 6: Binary Search Precondition
AP CSA binary search precondition practice. Understand why binary search requires sorted data and what happens without it.
Unit 4 Cycle 2 Day 6: Binary Search Precondition
AP CSA binary search precondition practice. Understand why binary search requires sorted data and what happens without it.
Unit 4 Cycle 2 Day 5: ConcurrentModification in...
AP CSA ConcurrentModification in enhanced for practice. Identify when enhanced for loops fail during ArrayList modification.
Unit 4 Cycle 2 Day 5: ConcurrentModification in...
AP CSA ConcurrentModification in enhanced for practice. Identify when enhanced for loops fail during ArrayList modification.
Unit 4 Cycle 2 Day 4: ArrayList Integer Removal...
Advanced AP CSA ArrayList Integer removal ambiguity practice. Navigate the index vs value conflict when removing Integers.
Unit 4 Cycle 2 Day 4: ArrayList Integer Removal...
Advanced AP CSA ArrayList Integer removal ambiguity practice. Navigate the index vs value conflict when removing Integers.
Unit 4 Cycle 2 Day 3: Off-by-One: Adjacent Comp...
AP CSA adjacent comparison off-by-one practice. Set correct loop bounds for algorithms that access arr[i+1].
Unit 4 Cycle 2 Day 3: Off-by-One: Adjacent Comp...
AP CSA adjacent comparison off-by-one practice. Set correct loop bounds for algorithms that access arr[i+1].
Unit 4 Cycle 2 Day 2: I/II/III: Array Traversal...
AP CSA I/II/III array traversal patterns practice. Compare different traversal approaches and their capabilities.
Unit 4 Cycle 2 Day 2: I/II/III: Array Traversal...
AP CSA I/II/III array traversal patterns practice. Compare different traversal approaches and their capabilities.
Unit 4 Cycle 2 Day 1: Array Aliasing Trap
AP CSA array aliasing trap practice. Understand when array variables share data versus hold independent copies.
Unit 4 Cycle 2 Day 1: Array Aliasing Trap
AP CSA array aliasing trap practice. Understand when array variables share data versus hold independent copies.
Unit 4 Cycle 1 Day 28: Comprehensive Unit 4 Review
AP CSA Unit 4 comprehensive review practice. Final preparation covering all data collection topics for the AP exam.
Unit 4 Cycle 1 Day 28: Comprehensive Unit 4 Review
AP CSA Unit 4 comprehensive review practice. Final preparation covering all data collection topics for the AP exam.
Unit 4 Cycle 1 Day 27: Mixed Array and Loop Alg...
AP CSA mixed array and loop algorithm practice. Combine array traversal, conditionals, and accumulators in complex algorithms.
Unit 4 Cycle 1 Day 27: Mixed Array and Loop Alg...
AP CSA mixed array and loop algorithm practice. Combine array traversal, conditionals, and accumulators in complex algorithms.
Unit 4 Cycle 1 Day 26: Array vs ArrayList Compa...
AP CSA array vs ArrayList comparison practice. Understand the tradeoffs between fixed arrays and dynamic ArrayLists.
Unit 4 Cycle 1 Day 26: Array vs ArrayList Compa...
AP CSA array vs ArrayList comparison practice. Understand the tradeoffs between fixed arrays and dynamic ArrayLists.
Unit 4 Cycle 1 Day 25: 2D Array: Counting Speci...
AP CSA 2D array counting practice. Count elements that match conditions across an entire 2D grid.
Unit 4 Cycle 1 Day 25: 2D Array: Counting Speci...
AP CSA 2D array counting practice. Count elements that match conditions across an entire 2D grid.
Unit 4 Cycle 1 Day 24: 2D Array Row Sums
AP CSA 2D array row sums practice. Compute aggregates for each row using the nested loop accumulator pattern.
Unit 4 Cycle 1 Day 24: 2D Array Row Sums
AP CSA 2D array row sums practice. Compute aggregates for each row using the nested loop accumulator pattern.
Unit 4 Cycle 1 Day 23: 2D Array Column Traversal
AP CSA 2D array column traversal practice. Process 2D arrays column by column and compare with row-major order.
Unit 4 Cycle 1 Day 23: 2D Array Column Traversal
AP CSA 2D array column traversal practice. Process 2D arrays column by column and compare with row-major order.
Unit 4 Cycle 1 Day 22: 2D Array Row Traversal
AP CSA 2D array row traversal practice. Process 2D arrays row by row using nested loops.
Unit 4 Cycle 1 Day 22: 2D Array Row Traversal
AP CSA 2D array row traversal practice. Process 2D arrays row by row using nested loops.
Unit 4 Cycle 1 Day 21: 2D Array Creation and Ac...
AP CSA 2D array creation and access practice. Master row-column indexing and dimension properties of 2D arrays.
Unit 4 Cycle 1 Day 21: 2D Array Creation and Ac...
AP CSA 2D array creation and access practice. Master row-column indexing and dimension properties of 2D arrays.
Unit 4 Cycle 1 Day 20: Comparing Sorts
AP CSA sorting algorithm comparison practice. Analyze when selection sort vs insertion sort is more efficient.
Unit 4 Cycle 1 Day 20: Comparing Sorts
AP CSA sorting algorithm comparison practice. Analyze when selection sort vs insertion sort is more efficient.
Unit 4 Cycle 1 Day 19: Insertion Sort
AP CSA insertion sort practice. Trace the insert-into-sorted-position algorithm and understand its shifting mechanism.
Unit 4 Cycle 1 Day 19: Insertion Sort
AP CSA insertion sort practice. Trace the insert-into-sorted-position algorithm and understand its shifting mechanism.
Unit 4 Cycle 1 Day 18: Selection Sort
AP CSA selection sort practice. Trace the find-minimum-and-swap algorithm through arrays step by step.
Unit 4 Cycle 1 Day 18: Selection Sort
AP CSA selection sort practice. Trace the find-minimum-and-swap algorithm through arrays step by step.
Unit 4 Cycle 1 Day 17: Binary Search Tracing
AP CSA binary search tracing practice. Trace the halving process on sorted arrays and count comparisons.
Unit 4 Cycle 1 Day 17: Binary Search Tracing
AP CSA binary search tracing practice. Trace the halving process on sorted arrays and count comparisons.
Unit 4 Cycle 1 Day 16: Linear Search
AP CSA linear search practice. Implement and analyze sequential search in arrays and ArrayLists.
Unit 4 Cycle 1 Day 16: Linear Search
AP CSA linear search practice. Implement and analyze sequential search in arrays and ArrayLists.
Unit 4 Cycle 1 Day 15: ArrayList: Forward Remov...
AP CSA ArrayList forward removal bug practice. Identify and fix the classic index-shift error during forward traversal removal.
Unit 4 Cycle 1 Day 15: ArrayList: Forward Remov...
AP CSA ArrayList forward removal bug practice. Identify and fix the classic index-shift error during forward traversal removal.
Unit 4 Cycle 1 Day 14: ArrayList: Building from...
AP CSA array to ArrayList conversion practice. Master translating between fixed arrays and dynamic ArrayLists.
Unit 4 Cycle 1 Day 14: ArrayList: Building from...
AP CSA array to ArrayList conversion practice. Master translating between fixed arrays and dynamic ArrayLists.
Unit 4 Cycle 1 Day 13: ArrayList Traversal and ...
AP CSA ArrayList traversal and removal practice. Avoid the index-shift bug when removing elements during iteration.
Unit 4 Cycle 1 Day 13: ArrayList Traversal and ...
AP CSA ArrayList traversal and removal practice. Avoid the index-shift bug when removing elements during iteration.
Unit 4 Cycle 1 Day 12: ArrayList set() and get()
AP CSA ArrayList set() and get() practice. Master in-place replacement versus insertion behavior in ArrayLists.
Unit 4 Cycle 1 Day 12: ArrayList set() and get()
AP CSA ArrayList set() and get() practice. Master in-place replacement versus insertion behavior in ArrayLists.
Unit 4 Cycle 1 Day 11: ArrayList remove()
AP CSA ArrayList remove() practice. Navigate the Integer removal ambiguity between index-based and value-based removal.
Unit 4 Cycle 1 Day 11: ArrayList remove()
AP CSA ArrayList remove() practice. Navigate the Integer removal ambiguity between index-based and value-based removal.
Unit 4 Cycle 1 Day 10: ArrayList Creation and M...
AP CSA ArrayList creation and methods practice. Master the essential ArrayList operations for the AP exam.
Unit 4 Cycle 1 Day 10: ArrayList Creation and M...
AP CSA ArrayList creation and methods practice. Master the essential ArrayList operations for the AP exam.
Unit 4 Cycle 1 Day 9: Shifting Elements
AP CSA array element shifting practice. Master left and right shift algorithms with correct iteration direction.
Unit 4 Cycle 1 Day 9: Shifting Elements
AP CSA array element shifting practice. Master left and right shift algorithms with correct iteration direction.
Unit 4 Cycle 1 Day 8: Counting Matches
AP CSA counting matches practice. Use the counter accumulator pattern to count elements that satisfy conditions.
Unit 4 Cycle 1 Day 8: Counting Matches
AP CSA counting matches practice. Use the counter accumulator pattern to count elements that satisfy conditions.
Unit 4 Cycle 1 Day 7: Finding Maximum
AP CSA finding maximum practice. Master the running maximum pattern and avoid common initialization mistakes.
Unit 4 Cycle 1 Day 7: Finding Maximum
AP CSA finding maximum practice. Master the running maximum pattern and avoid common initialization mistakes.
Unit 4 Cycle 1 Day 6: Enhanced For Cannot Modif...
AP CSA enhanced for loop modification limits practice. Understand why for-each cannot change primitive array values.
Unit 4 Cycle 1 Day 6: Enhanced For Cannot Modif...
AP CSA enhanced for loop modification limits practice. Understand why for-each cannot change primitive array values.
Unit 4 Cycle 1 Day 5: Enhanced For Loop
AP CSA enhanced for loop practice. Understand when for-each is appropriate and its copy-not-reference behavior.
Unit 4 Cycle 1 Day 5: Enhanced For Loop
AP CSA enhanced for loop practice. Understand when for-each is appropriate and its copy-not-reference behavior.
Unit 4 Cycle 1 Day 4: For Loop Array Traversal
AP CSA for loop array traversal practice. Master index-based array traversal for position-dependent algorithms.
Unit 4 Cycle 1 Day 4: For Loop Array Traversal
AP CSA for loop array traversal practice. Master index-based array traversal for position-dependent algorithms.
Unit 4 Cycle 1 Day 3: Array Out of Bounds
AP CSA array out of bounds practice. Identify code that causes ArrayIndexOutOfBoundsException through boundary errors.
Unit 4 Cycle 1 Day 3: Array Out of Bounds
AP CSA array out of bounds practice. Identify code that causes ArrayIndexOutOfBoundsException through boundary errors.
Unit 4 Cycle 1 Day 2: Array Initializer List
AP CSA array initializer list practice. Create pre-populated arrays and understand initializer syntax rules.
Unit 4 Cycle 1 Day 2: Array Initializer List
AP CSA array initializer list practice. Create pre-populated arrays and understand initializer syntax rules.
Unit 4 Cycle 1 Day 1: Array Declaration and Ini...
AP CSA array creation and access practice. Master array declaration, initialization, and zero-based indexing fundamentals.
Unit 4 Cycle 1 Day 1: Array Declaration and Ini...
AP CSA array creation and access practice. Master array declaration, initialization, and zero-based indexing fundamentals.
Unit 3 Cycle 2 Day 28: Comprehensive Unit 3 Fin...
AP CSA Unit 3 comprehensive final review. Advanced preparation covering all class creation and inheritance topics for the AP exam.
Unit 3 Cycle 2 Day 28: Comprehensive Unit 3 Fin...
AP CSA Unit 3 comprehensive final review. Advanced preparation covering all class creation and inheritance topics for the AP exam.
Unit 3 Cycle 2 Day 27: Comprehensive Inheritanc...
AP CSA comprehensive inheritance tracing practice. Master combined constructor and method tracing through class hierarchies.
Unit 3 Cycle 2 Day 27: Comprehensive Inheritanc...
AP CSA comprehensive inheritance tracing practice. Master combined constructor and method tracing through class hierarchies.
Unit 3 Cycle 2 Day 26: Class with Collection Field
AP CSA class with collection field practice. Design classes that manage ArrayList fields with proper encapsulation.
Unit 3 Cycle 2 Day 26: Class with Collection Field
AP CSA class with collection field practice. Design classes that manage ArrayList fields with proper encapsulation.
Unit 3 Cycle 2 Day 25: Polymorphism: Multiple M...
Advanced AP CSA multiple polymorphic method calls practice. Trace sequential method calls with mixed overridden and inherited behavior.
Unit 3 Cycle 2 Day 25: Polymorphism: Multiple M...
Advanced AP CSA multiple polymorphic method calls practice. Trace sequential method calls with mixed overridden and inherited behavior.
Unit 3 Cycle 2 Day 24: Encapsulation: Returning...
AP CSA returning mutable references practice. Understand how returning private object references can break encapsulation.
Unit 3 Cycle 2 Day 24: Encapsulation: Returning...
AP CSA returning mutable references practice. Understand how returning private object references can break encapsulation.
Unit 3 Cycle 2 Day 23: Constructor Chaining wit...
Advanced AP CSA multi-level constructor chaining practice. Trace super() calls through deep inheritance hierarchies.
Unit 3 Cycle 2 Day 23: Constructor Chaining wit...
Advanced AP CSA multi-level constructor chaining practice. Trace super() calls through deep inheritance hierarchies.
Unit 3 Cycle 2 Day 22: Error: Incorrect Overrid...
AP CSA incorrect override signature practice. Identify when a method accidentally overloads instead of overriding.
Unit 3 Cycle 2 Day 22: Error: Incorrect Overrid...
AP CSA incorrect override signature practice. Identify when a method accidentally overloads instead of overriding.
Unit 3 Cycle 2 Day 21: Method with Object Param...
AP CSA method with object parameter practice. Understand when parameter mutations are visible to the caller and when they are not.
Unit 3 Cycle 2 Day 21: Method with Object Param...
AP CSA method with object parameter practice. Understand when parameter mutations are visible to the caller and when they are not.
Unit 3 Cycle 2 Day 20: Polymorphism: Object Arr...
AP CSA polymorphic object sorting practice. Sort arrays of mixed subclass types using polymorphic comparison methods.
Unit 3 Cycle 2 Day 20: Polymorphism: Object Arr...
AP CSA polymorphic object sorting practice. Sort arrays of mixed subclass types using polymorphic comparison methods.
Unit 3 Cycle 2 Day 19: I/II/III: Encapsulation ...
AP CSA I/II/III encapsulation principles practice. Evaluate statements about information hiding, access control, and design.
Unit 3 Cycle 2 Day 19: I/II/III: Encapsulation ...
AP CSA I/II/III encapsulation principles practice. Evaluate statements about information hiding, access control, and design.
Unit 3 Cycle 2 Day 18: Scope Error: Local vs In...
AP CSA local vs instance scope error practice. Spot shadowing bugs where local variables hide instance fields.
Unit 3 Cycle 2 Day 18: Scope Error: Local vs In...
AP CSA local vs instance scope error practice. Spot shadowing bugs where local variables hide instance fields.
Unit 3 Cycle 2 Day 17: Inheritance: super in to...
AP CSA super in toString practice. Chain toString() calls through inheritance hierarchies to build composite string representations.
Unit 3 Cycle 2 Day 17: Inheritance: super in to...
AP CSA super in toString practice. Chain toString() calls through inheritance hierarchies to build composite string representations.
Unit 3 Cycle 2 Day 16: Constructor with Validation
AP CSA constructor validation practice. Write constructors that enforce valid initial state through parameter checking.
Unit 3 Cycle 2 Day 16: Constructor with Validation
AP CSA constructor validation practice. Write constructors that enforce valid initial state through parameter checking.
Unit 3 Cycle 2 Day 15: Polymorphic Array Proces...
AP CSA polymorphic array processing practice. Iterate through superclass arrays and observe different subclass behaviors.
Unit 3 Cycle 2 Day 15: Polymorphic Array Proces...
AP CSA polymorphic array processing practice. Iterate through superclass arrays and observe different subclass behaviors.