7.4.8. Free Response - StringFormatter B

The following is a free response question from 2016. It was question 4 part B on the exam. You can see all the free response questions from past exams at https://apstudents.collegeboard.org/courses/ap-computer-science-a/free-response-questions-by-year.

This question involves the process of taking a list of words, called wordList, and producing a formatted string of a specified length. The list wordList contains at least two words, consisting of letters only. When the formatted string is constructed, spaces are placed in the gaps between words so that as many spaces as possible are evenly distributed to each gap. The equal number of spaces inserted into each gap is referred to as the basic gap width. Any leftover spaces are inserted one at a time into the gaps from left to right until there are no more leftover spaces.

The following three examples illustrate these concepts. In each example, the list of words is to be placed into a formatted string of length 20.

../_images/2016FRQ4A1.png

7.4.8.1. Part B

  1. Write the StringFormatter method basicGapWidth, which returns the basic gap width as defined above.

../_images/2016FRQ4B1.png

Assume that totalLetters works as specified regardless of what you wrote in part (a). You must use totalLetters appropriately to receive full credit.

Complete method basicGapWidth below.

/** Returns the basic gap width when wordList is used to produce
*  a formatted string of formattedLen characters.
*  Precondition: wordList contains at least two words, consisting of letters only.
*            formattedLen is large enough for all the words and gaps.
*/
public static int basicGapWidth(List<String> wordList,
                                 int formattedLen)

7.4.8.2. How to Solve Part B

Click to reveal the algorithm and multiple choice questions that may help you write your solution.

7.4.8.3. Put the Code in Order

7.4.8.4. Write the Code

Finish writing the basicGapWidth method below so that it returns the size that the gap should be. The main method below will test your code to check that you solved it correctly.

You have attempted of activities on this page