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

```
// Mystery.cs
using System;

class Mystery
{
static void Main()
{
int x = 1;
int total = 0;

while (x <= 10)
{
int y = x * x;
Console.WriteLine(y);
total += y;
++x;
}

Console.WriteLine($"Total is {total}");
}
}
```


1
4
9
16
25
36
49
64
81
100
Total is 385

Computer Science & Information Technology

You might also like to view...

The ____ surrounding a text box indicates that it is a master item.

A. blue line B. bolded line C. red line D. dotted line

Computer Science & Information Technology

Usually, buttons have at least ____ states.

A. two B. three C. four D. six

Computer Science & Information Technology

If you access the Internet, you must use the TCP/IP protocol suite

Indicate whether the statement is true or false

Computer Science & Information Technology

Which of the following network devices would a network administrator use to create a DMZ?

A. Host based Firewall B. File server C. Network based firewall D. WINS server

Computer Science & Information Technology