(What Does This Program Do?) What does the following app display?

```
// Mystery3.cs
using System;

class Mystery3
{
static void Main()
{
int row = 10;
int column;

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

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

--row;
Console.WriteLine();
}
}
}
```

Computer Science & Information Technology

You might also like to view...

Which of the following programs runs on port 22?

A. Telnet B. FTP C. SMTP D. SSH

Computer Science & Information Technology

MC Hostname______references the local machine.

a) myhost. b) localhost. c) thishost. d) None of the above.

Computer Science & Information Technology