PrepAway - Latest Free Exam Questions & Answers

What are two possible ways to achieve this goal?

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.)

PrepAway - Latest Free Exam Questions & Answers

A.
Insert the following code segment at line 01:
#region DEBUG
Insert the following code segment at line 10:
#endregion

B.
Insert the following code segment at line 01:
[Conditional(“DEBUG”)]

C.
Insert the following code segment at line 05:
#region DEBUG
Insert the following code segment at line 07:
#endregion

D.
Insert the following code segment at line 10:
[Conditional(“DEBUG”)]

E.
Insert the following code segment at line 01:
#if DEBUG
Insert the following code segment at line 10:
#endif

F.
Insert the following code segment at line 10:
[Conditional(“RELEASE”)]

G.
Insert the following code segment at line 05:
#if DEBUG
Insert the following code segment at line 07:
#endif

Explanation:

http://stackoverflow.com/questions/2104099/c-sharp-if-then-directives-for-debug-vs-release

One Comment on “What are two possible ways to achieve this goal?


Leave a Reply