exam questions

Exam 70-483 All Questions

View all questions & answers for the 70-483 exam

Exam 70-483 topic 2 question 91 discussion

Actual exam question from Microsoft's 70-483
Question #: 91
Topic #: 2
[All 70-483 Questions]

You are developing an application that includes methods named EvaluateLoan, ProcessLoan, and FundLoan. The application defines build configurations named
TRIAL, BASIC, and ADVANCED.
You have the following requirements:
✑ The TRIAL build configuration must run only the EvaluateLoan() method.
✑ The BASIC build configuration must run all three methods.
✑ The ADVANCED build configuration must run only the EvaluateLoan() and ProcessLoan() methods.
You need to meet the requirements.
Which code segment should you use?

  • A. Option A
  • B. Option B
  • C. Option C
  • D. Option D
Show Suggested Answer Hide Answer
Suggested Answer: C 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
sscooter1010
Highly Voted 5 years, 4 months ago
Can't see the example code for D.
upvoted 7 times
noussa
4 years, 5 months ago
Full Question link: https://www.briefmenow.org/microsoft/which-code-segment-should-you-use-732/
upvoted 2 times
...
...
TonyBezerra
Most Recent 5 years, 3 months ago
Can't see the example code for C and D.
upvoted 1 times
...
JamieHaywood
5 years, 4 months ago
D) #if TRIAL EvaluateLoan(); #elif BASIC EvaluateLoan(); ProcessLoan(); #error FundLoan(); #else EvaluateLoan(); ProcessLoan(); FundLoan(); #endif
upvoted 2 times
nelaed
5 years, 1 month ago
Thanks, so answer is C
upvoted 7 times
...
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...