(What Does this Program Do?) What does the following program print?

```
// Mystery2.cpp
#include
using namespace std;

int main() {
unsigned int count{1};

while (count <= 10) {
cout << (count % 2 == 1 ? "****" : "++++++++") << endl;
++count;
}
}
```

```
****
++++++++
****
++++++++
****
++++++++
****
++++++++
****
++++++++
```

Computer Science & Information Technology

You might also like to view...

At the bottom of the editing area are ____ (do in order, count, while, forĀ each in, if, and so on) that can be used to build Alice statements.

A. tools B. navigators C. variables D. controls

Computer Science & Information Technology

A multimedia structure in which users navigate along the branches of a tree structure shaped by the natural logic of the content could be called ____________________.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology