Valid 70-483 Dumps shared by ExamDiscuss.com for Helping Passing 70-483 Exam! ExamDiscuss.com now offer the newest 70-483 exam dumps, the ExamDiscuss.com 70-483 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 70-483 dumps with Test Engine here:
You are developing code for a class named Account. The Account class includes the following method: You need to ensure that overflow exceptions are thrown when there is an error. Which type of block should you use?
Correct Answer: A
Explanation C# statements can execute in either checked or unchecked context. In a checked context, arithmetic overflow raises an exception. In an unchecked context, arithmetic overflow is ignored and the result is truncated. checked Specify checked context. unchecked Specify unchecked context. Reference: Checked and Unchecked (C# Reference) https://msdn.microsoft.com/en-us/library/khy08726.aspx