READ Free Dumps For Microsoft- 70-483
Question ID 17064 | You are testing an application. The application includes methods named CalculateInterest
and LogLine. The CalculateInterest() method calculates loan interest. The LogLine()
method sends diagnostic messages to a console window.
The following code implements the methods. (Line numbers are included for reference
only.)
You have the following requirements:
✑ The CalculateInterest() method must run for all build configurations.
✑ The LogLine() method must run only for debug builds.
You need to ensure that the methods run correctly.
What are two possible ways to achieve this goal? (Each correct answer presents a
complete solution. Choose two.)
|
Option A | Insert the following code segment at line 01: #region DEBUG Insert the following code segment at line 10: #endregion
|
Option B | Insert the following code segment at line 01: [Conditional("DEBUG")]
|
Option C | Insert the following code segment at line 05: #region DEBUG Insert the following code segment at line 07: #endregion
|
Option D | Insert the following code segment at line 10: [Conditional("DEBUG")]
|
Option E | Insert the following code segment at line 01: #if DEBUG Insert the following code segment at line 10: #endif
|
Option F | Insert the following code segment at line 05: #if DEBUG Insert the following code segment at line 07: #endif
|
Correct Answer | D,F |
Explanation Reference: http://stackoverflow.com/questions/2104099/c-sharp-if-then-directives-for- debug-vs-release
Question ID 17065 | You are creating a method that saves information to a database.
You have a static class named LogHelper. LogHelper has a method named Log to log the
exception.
You need to use the LogHelper Log method to log the exception raised by the database
server. The solution must ensure that the exception can be caught by the calling method,
while preserving the original stack trace.
How should you write the catch block? (Develop the solution by selecting and ordering the
required code snippets. You may not need all of the code snippets.)
|
Option A |
|
Correct Answer | A |
Explanation