Skip to main content
Logo image

Section 15.10 FRQ3 - ArrayLists - Part 1

From the 2025 Course and Exam Description:
Free-Response Question 3: Data Analysis with ArrayList. Students will be provided with a scenario and its associated class(es). Students will write one method of a given class based on provided specifications and examples. The method requires students to use, analyze, and manipulate data in an ArrayList structure.
FRQ 3 requires the following skills:
  • Iterate through an ArrayList
  • Access elements of an ArrayList
  • Call methods on elements of the ArrayList
  • Use a provided class

Subsection 15.10.1 2007 FRQ3 - Student Answer Key - Part (a)

The following is a free response question from 2007. It was question 3 on the exam. You can see all the free response questions from past exams at Past AP CSA Exams.
Question 3. Consider a system for processing student test scores. The following class will be used as part of this system and contains a student’s name and the student’s answers for a multiple-choice test. The answers are represented as strings of length one with an omitted answer being represented by a string containing a single question mark ("?"). These answers are stored in an ArrayList in which the position of the answer corresponds to the question number on the test (question numbers start at 0). A student’s score on the test is computed by comparing the student’s answers with the corresponding answers in the answer key for the test. One point is awarded for each correct answer and 1/4 of a point is deducted for each incorrect answer. Omitted answers (indicated by "?") do not change the student’s score.
public class StudentAnswerSheet
{

    private List<String> answers;

    /** @param key the list of correct answers, represented as strings
     *         of length one
     *  Precondition: key.size() is equal to the number of answers in
     *         this answer sheet
     *  @return this student's test score
    public double getScore(List<String> key)
    {
      /* to be implemented in part (a) */
    }

    /** @return the name of the student
     */
    public String getName()
    {
       /* implementation not shown */
    }

    // There may be other fields, constructors, and methods

}
The following table shows an example of an answer key, a student’s answers, and the corresponding point values that would be awarded for the student’s answers. In this example, there are six correct answers, three incorrect answers, and one omitted answer. The student’s score is ((6 * 1) - (3 * 0.25)) = 5.25.
Figure 15.10.1. The answer key and student answers and point values
Part a. Write the StudentAnswerSheet method getScore. The parameter passed to method getScore is a List of strings representing the correct answer key for the test being scored. The method computes and returns a double that represents the score for the student’s test answers when compared with the answer key. One point is awarded for each correct answer and 1/4 of a point is deducted for each incorrect answer. Omitted answers (indicated by "?") do not change the student’s score.
The code below has a main method for testing the getScore method.
Complete method getScore below.

Activity 15.10.1.

Complete method getScore below.

Subsection 15.10.2 2007 FRQ3 - Student Answer Key - Part (b)

Part b. Consider the following class that represents the test results of a group of students that took a multiple-choice test.
public class TestResults {
    private List<StudentAnswerSheet> sheets;

    /**
     * Precondition: sheets.size() > 0; all answer sheets in sheets have the same number of answers
     *
     * @param key the list of correct answers represented as strings of length one Precondition:
     *     key.size() is equal to the number of answers in each of the answer sheets in sheets
     * @return the name of the student with the highest score
     */
    public String highestScoringStudent(List<String> key) {
        /* to be implemented in part (b) */
    }

    // There may be fields, constructors, and methods that are not shown.
}
Write the TestResults method highestScoringStudent, which returns the name of the student who received the highest score on the test represented by the parameter key. If there is more than one student with the highest score, the name of any one of these highest-scoring students may be returned. You may assume that the size of each answer sheet represented in sheets is equal to the size of key.
Complete method highestScoringStudent below.
The code below has a main method for testing the highestScoringStudent method.

Activity 15.10.2.

Complete method highestScoringStudent below.
You have attempted of activities on this page.