Does this meet the goal?

Posted by: Pdfprep Category: 70-483 Tags: , ,

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.

After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.

You have the following C# code. (Line numbers are included for reference only.)

You need the foreach loop to display a running total of the array elements, as shown in the following output.

1

3

6

10

15

Solution: You insert the following code at line 02:

Does this meet the goal?
A . Yes
B . No

Answer: B

Explanation:

x += y is equivalent to x = x + y

References: https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/addition-assignment-operator

Leave a Reply

Your email address will not be published.