070-483 無料問題集「Microsoft Programming in C#」
You are creating a class by using C#. The class will manage writing log entries to a file. You have the following code. (Line numbers are included for reference only.)


You test the class by using the following code.

When you run the test, you receive the following error message: 'System.ObjectDisposedException: 'Cannot write to a closed TextWriter.'" You need to ensure that LogWriter closes the log file properly without raising an exception. Which three actions should you perform? tach correct answer presents part of the solution. NOTE: Each correct selection is worth one point.


You test the class by using the following code.

When you run the test, you receive the following error message: 'System.ObjectDisposedException: 'Cannot write to a closed TextWriter.'" You need to ensure that LogWriter closes the log file properly without raising an exception. Which three actions should you perform? tach correct answer presents part of the solution. NOTE: Each correct selection is worth one point.
正解:B、E
解答を投票する
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?
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?
正解:B
解答を投票する
You have the following code (line numbers are included for reference only):

To answer, complete each statement according to the information presented in the code.


To answer, complete each statement according to the information presented in the code.

正解:

You have the following class (line numbers are included for reference only):

ServiceProxy is a proxy for a web service. Calls to the Update method can take up to five seconds. The Test class is the only class the uses Class1.
You run the Execute method three times, and you receive the following results:
213
312
231
You need to ensure that each value is appended to the Value property in the order that the Modify methods are invoked.
What should you do?


ServiceProxy is a proxy for a web service. Calls to the Update method can take up to five seconds. The Test class is the only class the uses Class1.
You run the Execute method three times, and you receive the following results:
213
312
231
You need to ensure that each value is appended to the Value property in the order that the Modify methods are invoked.
What should you do?

正解:B
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
You are developing an application that includes the following code segment. (Line numbers are included for reference only.)

The GetAnimals() method must meet the following requirements:
* Connect to a Microsoft SQL Server database.
* Create Animal objects and populate them with data from the database.
* Return a sequence of populated Animal objects.
You need to meet the requirements.
Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)

The GetAnimals() method must meet the following requirements:
* Connect to a Microsoft SQL Server database.
* Create Animal objects and populate them with data from the database.
* Return a sequence of populated Animal objects.
You need to meet the requirements.
Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)
正解:B、E
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
You are developing an application in C#.
The application uses exception handling on a method that is used to execute mathematical calculations by using integer numbers.
You write the following catch blocks for the method (line numbers are included for reference only):

You need to add the following code to the method:

At which line should you insert the code?
The application uses exception handling on a method that is used to execute mathematical calculations by using integer numbers.
You write the following catch blocks for the method (line numbers are included for reference only):

You need to add the following code to the method:

At which line should you insert the code?
正解:B
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
An application receives JSON data in the following format:

The application includes the following code segment. (Line numbers are included for reference only.)

You need to ensure that the ConvertToName() method returns the JSON input string as a Name object.
Which code segment should you insert at line 10?

The application includes the following code segment. (Line numbers are included for reference only.)

You need to ensure that the ConvertToName() method returns the JSON input string as a Name object.
Which code segment should you insert at line 10?
正解:A
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
An application contains code that measures reaction times. The code runs the timer on a thread separate from the user interface. The application includes the following code. (Line numbers are included for reference only.)

You need to ensure that the application cancels the timer when the user presses the Enter key.
Which code segment should you insert at line 14?

You need to ensure that the application cancels the timer when the user presses the Enter key.
Which code segment should you insert at line 14?
正解:A
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
You need to write a console application that meets the following requirements:
If the application is compiled in Debug mode, the console output must display Entering debug mode.
If the application is compiled in Release mode, the console output must display Entering release mode.
Which code should you use?

If the application is compiled in Debug mode, the console output must display Entering debug mode.
If the application is compiled in Release mode, the console output must display Entering release mode.
Which code should you use?

正解:B
解答を投票する
解説: (JPNTest メンバーにのみ表示されます)