2012 AP CSA FRQ 3: GrayImage - Solution

2012 AP CSA FRQ 3: GrayImage

Topic: 2D Arrays & Image Processing

Skills: 2D array traversal, counting, pixel manipulation

Unit: Unit 4 (Data Collections) (2025-2026 AP CSA)

Points: 9 | Time: ~22 minutes

Part (a)

Write the countWhitePixels method.

Try First! Attempt before viewing solution.

Solution

public int countWhitePixels()
{
    int count = 0;
    for (int r = 0; r < pixelValues.length; r++)
    {
        for (int c = 0; c < pixelValues[0].length; c++)
        {
            if (pixelValues[r][c] == 255)
            {
                count++;
            }
        }
    }
    return count;
}

Part (b)

Write the processImage method that reduces pixel values.

Solution

public void processImage()
{
    for (int r = 0; r < pixelValues.length; r++)
    {
        for (int c = 0; c < pixelValues[0].length; c++)
        {
            int newValue = pixelValues[r][c] - pixelValues[r][c] / 2;
            pixelValues[r][c] = newValue;
        }
    }
}

Key Concepts

✓ Standard row-column 2D array traversal
✓ pixelValues.length = rows, pixelValues[0].length = cols
✓ White pixels have value 255
✓ Integer division for halving

Common Mistakes

Swapping row and column lengths
Wrong white pixel value (255, not 0)
Modifying array while using iterator
Integer overflow in calculations
Practice Similar: 2019 FRQ 4 | 2022 FRQ 4 | 2023 FRQ 4

Official Resources

Author: Tanner Crow - AP CS Teacher, 11+ years

Get in Touch

Whether you're a student, parent, or teacher — I'd love to hear from you.

Just want free AP CS resources?

Enter your email below and check the subscribe box — no message needed. Students get daily practice questions and study tips. Teachers get curriculum resources and teaching strategies.

Typically responds within 24 hours

Message Sent!

Thanks for reaching out. I'll get back to you within 24 hours.

🏫 Welcome, fellow educator!

I offer curriculum resources, practice materials, and study guides designed for AP CS teachers. Let me know what you're looking for — whether it's classroom materials, a guest speaker, or Teachers Pay Teachers resources.

Email

[email protected]

📚

Courses

AP CSA, CSP, & Cybersecurity

Response Time

Within 24 hours

Prefer email? Reach me directly at [email protected]