(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();
}
}
}
```
You might also like to view...
The Double paragraph spacing format includes ________ spacing after and double line spacing
A) 0 pt B) 4 pt C) 6 pt D) 8 pt
If you select the Eyedropper tool, and then decide you don't want to use it, press the ____ key.
A. Delete B. End C. Backspace D. Esc
Which of the following options prevents a logon after a set number of failed logon attempts within a specified period and can also specify the length of time that the lockout is in force?
A. password lock B. logon lock C. password lockout D. logon lockout
Which of the following devices would administer routing in a network?
A. Multilayer switch B. Proxy server C. DNS server D. Load balancer