Skip to main content
Logo image

Section 4.41 Free Response - StringFormatter A

The following is a free response question from 2016. It was question 4 part A 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
 1 
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.
Figure 4.41.1.
The leftover spaces are inserted one at a time between the words from left to right until there are no more leftover spaces. In this example, the first two gaps get an extra space.
Figure 4.41.2.
You will implement three static methods in a class named StringFormatter that is not shown.

Subsection 4.41.1 Part A

(a) Write the StringFormatter method totalLetters, which returns the total number of letters in the words in its parameter wordList. For example, if the variableList<String> words is [β€œA”, β€œfrog”, β€œis”],then the call StringFormatter.totalLetters(words) returns 7. You may assume that all words in wordList consist of one or more letters.
Complete method totalLetters below.
/** Returns the total number of letters in wordList.
*  Precondition: wordList contains at least two words, consisting of letters only.
*/
public static int totalLetters(List<String> wordList)

Subsection 4.41.2 How to Solve Part A

We need to return the total number of letters for all of the strings in wordList. We will need to create an integer variable to keep track of the number of letters and initialize it to 0. Then we will loop through all of the strings in wordList and add the length of the current string to the number of letters. When the loop is finished we will return the number of letters.

Activity 4.41.1.

Which loop would be best for this problem?
  • while
  • A while loop is the best choice when you don’t know the number of times you need to loop.
  • You could use a for loop, but there is a more concise option since you are not changing any values of wordList.
  • for-each
  • Correct! A for-each loop is the most concise way to access every string in wordList to keep track of numLetters

Activity 4.41.2.

What is the correct way to access the length of a String str?
  • str.size()
  • .size() is not the correct method call to find the length of a string. .size() is used with ArrayLists. Try again!
  • str.length()
  • Correct! str.length() will return the length of String str.
  • str.length
  • Almost! length() is a method call, so parentheses are required.

Subsection 4.41.3 Put the Code in Order

Activity 4.41.3.

The following has the correct code to solve this problem, but also contains extra code that isn’t needed in a correct solution. Drag the needed blocks from the left into the correct order on the right and indent them as well. Check your solution by clicking on the Check button. You will be told if any of the blocks are in the wrong or are in the wrong order. You will also be told if the indention is wrong.

Subsection 4.41.4 Write the Code

Activity 4.41.4.

Finish writing the totalLetters method below so that it returns the number of letters for all the strings in wordList. The main method below will test your code to check that you solved it correctly.
You have attempted of activities on this page.