A program is needed to take a string containing a full name and to produce a new string of initials. Some words in the full name will be ignored. For example, “the”, “and”, “of”, “for” and “to” may all be ignored. Each letter of the new string must be upper case. For example: Full name Initials Integrated Development Environment IDE The American Standard Code for Information Interchange ASCII The programmer has decided to use the following global variables: • a ten element 1D array IgnoreList of type STRING to store the ignored words • a string FNString to store the full name string. Assume that: • each alphabetic character in the full name string may be either upper or lower case • the full name string contains at least one word. The programmer has started to define program modules as follows: Module Description GetStart() • Called with an INTEGER as its parameter, representing the number of a word in FNString • Returns the character start position of that word in FNString or returns -1 if that word does not exist • For example: GetStart(3) applied to "hot and cold" returns 9 GetWord() • Called with the position of the first character of a word in FNString as its parameter • Returns the word from FNString • For example: if FNString contains the string "hot and cold", GetWord(9) returns "cold" IgnoreWord() • Called with a STRING parameter representing a word • Searches for the word in the IgnoreList array • Returns TRUE if the word is found, otherwise returns FALSE GetInitials() • Processes the sequence of words in the full name one word at a time • Calls GetStart(), GetWord() and IgnoreWord () to process each word to form the new string • Outputs the new string
✓ Correct Answer
The correct answer is —. This question tests the candidate's understanding of subroutines within the Computer Sciencesyllabus. The examiner's mark scheme requires...
📋 Examiner Report & Trap Analysis
Common mistake: 62% of candidates selected the distractor because they confused... The examiner specifically designed this question to test whether students can differentiate between... To secure full marks, candidates must demonstrate...
Unlock the Examiner's Answer
Sign up for free to reveal the correct answer, the official mark scheme breakdown, and the examiner trap analysis for this question.
Sign Up Free to Unlock →Join thousands of Cambridge students already using Oracle Prep