How many times the following code prints "Welcome to C++"?
```
int count = 0;
while (count++ < 10)
{
cout << "Welcome to C++";
}
```
A. 9
B. 8
C. 11
D. 10
E. 0
D. 10
Computer Science & Information Technology
You might also like to view...
An event driven interactivity chart:
a. Is not important to the development of the project. b. Should only be used if the project has very complicated interaction. c. Should always be developed to show how the screens interact with each other. d. Is only used by the user after the project is completed.
Computer Science & Information Technology
Which of the following does not need to be considered when building a Web site?
A) structure B) HTML expertise C) graphics D) navigation E) promotion
Computer Science & Information Technology