历年AP Computer Science计算机科学系列
真题与答案下载
翰林国际教育全网首发
力争超快速发布最全资料
助你在升学路上一帆风顺
为你的未来保驾护航
2014 AP Computer Science A Free-Response Questions Free Download
2014 AP 计算机科学A简答题部分免费下载
此套题仅 Section II含有简答题,
共计时1小时45分钟,共4题
占总分50%
每道大题可能含有不同数量的小题
完整版下载链接见文末
部分真题预览:
1)This question involves reasoning about strings made up of uppercase letters. You will implement two related methods that appear in the same class (not shown). The first method takes a single string parameter and returns a scrambled version of that string. The second method takes a list of strings and modifies the list by scrambling each entry in the list. Any entry that cannot be scrambled is removed from the list.
- Write the method scrambleWord which takes a given word and returns a string that contains a scrambled version of the word according to the following rules.
The scrambling process begins at the first letter of the word and continues from left to right.
If two consecutive letters consist of an "A" followed by a letter that is not an "A", then the two letters are swapped in the resulting string.
Once the letters in two adjacent positions have been swapped, neither of those two positions can be involved in a future swap.
The following table shows several examples of words and their scrambled versions.
Complete method scrambleWord below. - Write the method scrambleOrRemove, which replaces each word in the parameter wordList, with its scrambled version and removes any words that are unchanged after scrambling. The relative ordering of the entries in wordList, remains the same as before the call to scrambleOrRemove.
The following example shows how the contents of wordList would be modified as a result of calling scrambleOrRemove.
Before the call to scrambleOrRemove:
After the call to scrambleOrRemove:
Assume that scrambleWord is in the same class as scrambleOrRemove and works as specified, regardless of what you wrote in part (a).
Complete method scrambleOrRemove below.
完整版真题资料可以底部二维码免费领取↓↓↓