Write a spellcheck() method using an enhanced for-each loop that takes a word as a parameter and returns true if it is in the dictionary array. Return false if it is not found.

Respuesta :

Answer:

if (checker.spellcheck(word, dictionary) == False)

Explanation:

Spell check is a method which enables the user to check the errors in words and spelling before the draft is finalized. It is a built in feature in many softwares. It is a feature which helps users for proof reading and editing can be made before the final draft.