(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
You might also like to view...
The ________ data type stores serial numbers that are converted and formatted as dates or times
Fill in the blank(s) with correct word
What is the process for deleting overset text without changing the size of the type or the text frame?
What will be an ideal response?