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

```
// Exercise 4.22: Mystery3.cpp
#include
using namespace std;

int main() {
unsigned int row{10};

while (row >= 1) {
unsigned int column{1};


while (column <= 10) {
cout << (row % 2 == 1 ? "<" : ">");
++column;
}

--row;
cout << endl;
}
}
```

```
>>>>>>>>>>
<<<<<<<<<<
>>>>>>>>>>
<<<<<<<<<<
>>>>>>>>>>
<<<<<<<<<<
>>>>>>>>>>
<<<<<<<<<<
>>>>>>>>>>
<<<<<<<<<<
```

Computer Science & Information Technology

You might also like to view...

In SharePoint, a library contains information arranged as records

Indicate whether the statement is true or false

Computer Science & Information Technology

Consider the impact of a poorly designed chart. Explain why it is important to have a well-designed chart, and name at least four tips for creating a good chart.

What will be an ideal response?

Computer Science & Information Technology