What will the following code display?

```
int x = 0;
while (x < 5)
{
cout << x << " ";
x++;
}
```

a. 0 1 2 3 4 5
b. 0 1 2 3 4
c. 0
1
2
3
4
d. This is an infinite loop


b. 0 1 2 3 4

Computer Science & Information Technology

You might also like to view...

You format cell content by changing the ____ of the text by applying styles.

A. font B. size C. color D. All of the above

Computer Science & Information Technology

To hide or show gridlines in a worksheet, you click Gridlines in the ________

A) Workbook Views group on the VIEW tab B) Show group on the VIEW tab C) Workbook Views group on the HOME tab D) Show group on the HOME tab

Computer Science & Information Technology

The default number format is General, which displays numbers the way you type them.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Which Access feature is used to divide an Access database into two files: one file contains the tables of the database and the other file contains the queries, forms, reports, and other database objects.

A. Linked Table Manager B. Relationships C. Database Splitter D. ODBC database

Computer Science & Information Technology