Analyze the following code.

```
int count = 0;
while (count < 100)
{
// Point A
cout << "Welcome to C++!" << endl;
count++;
// Point B
}
// Point C

int count = 0;
while (count < 100)
{
// Point A
cout << "Welcome to C++!\n";

count++;
// Point B
}
// Point C
```

A. count < 100 is always false at Point B
B. count < 100 is always true at Point A
C. count < 100 is always true at Point B
D. count < 100 is always true at Point C
E. count < 100 is always false at Point C

B. count < 100 is always true at Point A
E. count < 100 is always false at Point C

Computer Science & Information Technology

You might also like to view...

Which of the following is a choice you can make regarding Windows updates?

A) automatic B) recommended C) manual D) required

Computer Science & Information Technology

Slicers that are connected to and used in more than one PivotTable are called shared slicers

Indicate whether the statement is true or false

Computer Science & Information Technology