Please enable JavaScript to use CodeHS

Want to receive Question of the Day updates? Subscribe Here

AP CSA Question of the Day April 1, 2025

Reference
  1. Incorrect Correct No Answer was selected Invalid Answer

    Consider the following code segment.

    public static int mysteryMethod(String word)
    {
        int sum = 0;
        for(int i = 0; i < word.length(); i++)
        {
            word = word.toLowerCase();
            if(word.charAt(i) == 'a')
            {
                sum++;
            }
        }
        return sum;
    }
    Java

    What would the method call mysteryMethod("It was a blustery day.") return?