What should you do?

You are debugging an application that calculates loan interest.

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

You have the following requirements:

• The debugger must break execution within the Calculatelnterest() method when the loanAmount variable is less than or equal to zero.

• The release version of the code must not be impacted by any changes.

You need to meet the requirements.

What should you do?
A . Insert the following code segment at tine 05:
Debug.Write(loanAmount > 0);
B . Insert the following code segment at line 05:
Trace.Write(loanAmount > 0);
C . Insert the following code segment at line 03:
Debug.Assert(loanAmount > 0);

D . Insert the following code segment at line 03:
Trace.Assert(loanAmount > 0);

Answer: C

Explanation:

By default, the Debug.Assert method works only in debug builds. Use the Trace.Assert method if you want to do assertions in release builds. For more information, see Assertions in Managed Code.

http://msdn.microsoft.com/en-us/library/kssw4w7z.aspx

Latest 70-483 Dumps Valid Version with 288 Q&As

Latest And Valid Q&A | Instant Download | Once Fail, Full Refund

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments