Options that are not in the Paragraph group of the Home tab - such as first-line indent and Widow/Orphan control- can be set in the ________
Fill in the blank(s) with correct word
Paragraph dialog box
Computer Science & Information Technology
You might also like to view...
What keyword is used to end a CASE statement?
a. CASE b. WHEN c. ELSE d. END
Computer Science & Information Technology
Which of the following are correct ways to end a loop using a test for end-of-file?
a) ``` while(inStream->next) { cout << next; } ``` b) ``` while(inStream >> next) cout << next; ``` c) ``` inStream.get(next) while(!inStream.eof( )) { cout << next; inStream.get(next); } ``` d) ``` inStream.get(next) while(!eof(inStream)) { cout << next; inStream.get(next); } ``` e) None of the above. You cannot control a loop using a test for end of file.
Computer Science & Information Technology