exam questions

Exam MB-500 All Questions

View all questions & answers for the MB-500 exam

Exam MB-500 topic 3 question 34 discussion

Actual exam question from Microsoft's MB-500
Question #: 34
Topic #: 3
[All MB-500 Questions]

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
A company uses Dynamics 365 finance and operations apps.
You have a custom enumeration named CarType. The enumeration has the following elements: Sedan, SUV.
You must extend CarType and add a new element named MUV to CarType.
You need to develop a solution that meets the requirements.
Solution: Set the is Extensible property to true for the CarType enumeration. Create a new enumeration to add the MUV element.
Does the solution meet the goal?

  • A. Yes
  • B. No
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

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
globeearth
3 months ago
Selected Answer: B
B. No - Why the Solution Fails The solution misinterprets the mechanism for extending an enumeration. While setting IsExtensible to true is a correct preparatory step, creating a new enumeration does not extend CarType. It creates a separate enum (ContosoCarType) that is incompatible with CarType, breaking the requirement to add MUV as a valid value for CarType. The correct approach is to create an enum extension for CarType, which adds MUV to the existing enum while maintaining compatibility with all uses of CarType.
upvoted 1 times
...
theCoder1
5 months, 2 weeks ago
Selected Answer: B
The solution does not meet the goal. Instead, you should directly add the MUV element to the existing CarType enumeration after setting the is Extensible property to true
upvoted 1 times
...
PanduRangaReddy
1 year, 1 month ago
Selected Answer: A
The requirement is "You must extend CarType and add a new element named MUV to CarType." not just "add a new element named MUV to CarType." So A is correct answer
upvoted 2 times
PanduRangaReddy
1 year, 1 month ago
I was wrong, B is the correct answer, correct solution for the given requirement is "Create extension for the CarType and add new element named MUV"
upvoted 4 times
...
...
Ganga425
1 year, 2 months ago
Selected Answer: A
Assuming its a custom enum. But there is unnecessary confusion by referring to isextensible as its mentioned as a custom enum
upvoted 1 times
...
Ganga425
1 year, 2 months ago
Looks like some confusion in the question. If its a custom enum, then adding a element is correct. But not sure why extension is coming into picture
upvoted 1 times
...
Hmedd
1 year, 2 months ago
Selected Answer: B
B correct answer, you need to create extension
upvoted 3 times
...
MaximeC
1 year, 6 months ago
Selected Answer: B
You need to create an extension of the enumeration to add a new element
upvoted 4 times
...
MiBro
1 year, 10 months ago
Selected Answer: B
You have to create an extension to add new enumerations
upvoted 4 times
babalalex
1 year, 10 months ago
It is custom enumeration, So not needed
upvoted 3 times
deepak_kb
1 year, 6 months ago
Another point is that a new element has to be added not a new enumeration.
upvoted 2 times
...
deepak_kb
1 year, 6 months ago
What is the necessity of setting IsExtension property?
upvoted 1 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 ...