Word has it's own spelling check, it suggests words that are similar to the misspelled one. To use it you highlight the word, right click and it should either display the word or there is a spelling tab like this one I attached. It's just known as spellcheck as far as I know.
They can study what the video game consoles are made up of and how they work so that way the can implement them into their work.
<u>Answer:</u>
<em>A prototype for a function called isPrime that returns is true.</em>
<u>Explanation:</u>
Function prototype is just a skeletal part of the function which has <em>a return type, function name and the respective parameters. </em>
There is a difference between function and function prototype.
Function is nothing but a <em>function definition</em>, where it actually has all the lines of codes which need to be processed when it is called. It can be invoked any number of times and anywhere within the<em> scope of the function</em>. <em> </em>
As per the given question, the prototype can be,
<em>bool isPrime (int);
</em>
Your answer would be a type