What does the following program print?

```
// Mystery3.java
public class Mystery3 {
public static void main(String[] args) {
int row = 10;

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

while (column <= 10) {
System.out.print(row % 2 == 1 ? "<" : ">");
++column;
}

--row;
System.out.println();
}
}
}
```


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

Computer Science & Information Technology

You might also like to view...

If you need to create a few different versions of a PivotTable using the same data, you have to do this by creating queries

Indicate whether the statement is true or false

Computer Science & Information Technology

A printer app for iOS or Android must be obtained by visiting the printer vendor's website

Indicate whether the statement is true or false

Computer Science & Information Technology

Both Windows 7 and Linux have built-in port filtering capabilities

Indicate whether the statement is true or false.

Computer Science & Information Technology

The selected items icon can be dragged from one layer to another.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology