The output of this C# program will be:

```
class Test
{
static void Main()
{
int[] a = {99, 22, 11, 3, 11, 55, 44, 88, 2, -3};
int result = 0;
for (int i = 0; i < a.Length; ++i)
{
if (a[i] > 30)
{
result += a[i];
}
}
Console.WriteLine($"Result is: {result}");
}
}
```

a) Result is: 280
b) Result is: 154
c) Result is: 286
d) Result is: 332


c) Result is: 286

Computer Science & Information Technology

You might also like to view...

The element used to create a horizontal line on a web page is:

a. h1 b. br c. hr d. div

Computer Science & Information Technology

Which of the following statements is false?

a. The nodes arranged in a layout container are a combination of controls and possibly other layout containers. b. When the user interacts with a control, it generates an event. Programs can use event handling to specify what should happen when each user interaction occurs. c. An event handler is a method that responds to a user interaction. An FXML GUI’s event handlers are defined in a controller class. d. All of the above statements are true.

Computer Science & Information Technology

Font ____ refers to attributes, such as bold, italic, and underline.

A. typeface B. style C. emphasize D. usage

Computer Science & Information Technology

You can modify the data that displays in the PivotChart by dragging the ________ between areas in the PivotChart Fields list

. Fill in the blank(s) with correct word

Computer Science & Information Technology