Looking up a word in a dictionary for the most part is a


Looking up a word in a dictionary, for the most part, is a routine activity of flipping pages. But creating a programming logic for it can be a complicated process. For example, assume that you want to look up the word "logic" in your dictionary. You might open the dictionary to a random page and see "monkey" as the first word on the page. Alphabetically you know your lookup word "logic" comes before the first word on the page (monkey), so you flip backward and see "juice" as the last word on the page you just opened. You have gone too far, so you flip forward; so on and so forth. Once you know the word is between the first and last word on page; you then scan the page word by word to find a match for your lookup word.

Create a structured flowchart AND pseudocode that describes the process of looking up a random word in a dictionary. One of the questions to solve in this assignment is the logic for determining when the look up word is on the page you opened. Use variables like lookupWord, firstWordOnPage, lastWordOnPage, etc. Use these variables in your flowchart and pseudocode NOT a specific word like "logic". After you create the flowchart and pseudocode pick a random word like "logic" in the above example and have a fellow student attempt to carry out your instructions. Use five modules where the main program declares appropriate variables and calls housekeeping(), detailLoop(), findPageWithWord(), matchFound(), and endOfJob(). Housekeeping() prompts for and accepts the first lookup word or zero (0) to exit the program. detailLoop() conducts the search to find if lookup word is on page. If lookup word is on page detailLoop() will call matchWord(). If lookup word is NOT on page detailLoop will call findPageWithWord(). findPageWithWord() flips page forward or backward, prompts for and accepts subsequent first and last words on page. matchFound() searches within the current page to locate the word matching the lookup word. endOfJob() displays the message "Thank you for using this program". Include appropriate sentinel values and relational operators "<,>, =, <>".

Solution Preview :

Prepared by a verified Expert
Basic Computer Science: Looking up a word in a dictionary for the most part is a
Reference No:- TGS02183378

Now Priced at $25 (50% Discount)

Recommended (96%)

Rated (4.8/5)