Will the following program terminate?

```
int balance = 10;

while (true)
{
if (balance < 9) continue;
balance = balance - 9;
}
```

A. Yes
B. No


B. No

Computer Science & Information Technology

You might also like to view...

There are several uses of the getline function. Assume the definition, string line1, line2; Which one of these allows specification of the character on which input stop?

a. cout << “Enter a line of input \n”; getline(cin, line1); b. cout << “Enter a line of input \n”; getline(cin, line1, ‘?’); c. cout << “Enter a line of input \n”; getline(cin, line1) >> line2;

Computer Science & Information Technology

Which showmount command option is used to used to list only the mounted directories?

A. -a B. -d C. -h D. -m

Computer Science & Information Technology

Where possible, apply the rules of exponents to simplify the expressions to a base number with a single exponent. Note: there are three parts to each problem.

![15031|69x68](upload://7NBFIvqSLyIRmVrPKyuIEyuj7Pe.jpeg)

Computer Science & Information Technology

Displays the name of a worksheet within a workbook.

What will be an ideal response?

Computer Science & Information Technology