How many times the following code prints "Welcome to C++"?

```
int count = 0;
do
{
cout << "Welcome to C++";
count++;
} while (count < 10);
```

A. 8
B. 10
C. 11
D. 9
E. 0

B. 10

Computer Science & Information Technology

You might also like to view...

An audio/video editing station is used to manipulate sounds and/or video

Indicate whether the statement is true or false

Computer Science & Information Technology

Input boxes with the number data type are displayed using a spinner control in which users click an up or down arrow to increase or decrease the field value, respectively.

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

Computer Science & Information Technology