(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...

Write the line of code defining a type color that associates the colors red, blue and green with the integers 0, 1 and 2.

What will be an ideal response?

Computer Science & Information Technology

The shortcut for formatting a hanging indent is ____.

A. CTRL + H B. CTRL + T C. CTRL + ENTER D. CTRL + ALT + ENTER

Computer Science & Information Technology

A(n) _____ file is a text file containing Extensible Markup Language tags that identify field names and data.

A. XML B. HTML C. EML D. delimited

Computer Science & Information Technology

Why does the Asian region have the highest number of Internet users?

a. All Asian countries have ubiquitous networks available. b. Many Asian countries are among the most populous in the world. c. Many web hosts are located in Asia. d. Many Asian countries put a high emphasis on math and physics in school.

Computer Science & Information Technology