Free Microsoft Dynamics MB-820 Actual Exam Questions - Question 3 Discussion
Question No. 3
HOTSPOT You need to create the Fabrikam Vendor API for the accounting department. How should you complete the code segment? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. 
US
KK
Kevin K.
2026-02-18
I’d pick [ApiController] for sure to handle model binding and validation automatically, and [Route("api/[controller]")] keeps the URL consistent with common API patterns. The other route options look too specific without clear requirements.
0
AO
Ahmed O.
2026-01-24
Agree, [ApiController] with [Route("api/[controller]")] fits best here.
0
ZN
Zain N.
2026-01-19
This one looks pretty straightforward. I’m guessing the API attribute should be set to [ApiController] and the route to [Route("api/[controller]")]. Seems like classic Web API setup.
0