Use a single-line IF statement to output the message "Count exceeds 99" when the value of the variable count is greater than 99.

What will be an ideal response?


```
IF count > 99 THEN OUTPUT "Count exceeds 99"
```

Computer Science & Information Technology

You might also like to view...

How do you quickly select a sentence?

A) Double-click anywhere in the sentence B) Hold down Ctrl and click in the sentence C) Hold down Shift and click in the sentence D) Triple-click anywhere in the sentence

Computer Science & Information Technology

________ Parts refers to all of the reusable pieces of content that are available to insert into a document

A) Content B) Theme C) Quick D) Style

Computer Science & Information Technology

Choose the correct verb to agree in number with the subject of the following sentence. The faculty __________ the scholarship recipients.?

A. ?select B. ?selects

Computer Science & Information Technology

int recFunc(int num){  if (num >= 10)     return 10;  else     return num * recFunc(num + 1);} Consider the accompanying definition of a recursive function. What is the output of the following statement?cout << recFunc(8) << endl;

A. 4 B. 8 C. 72 D. 720

Computer Science & Information Technology