Question 48 of 103 from exam MB-500: Microsoft Dynamics 365: Finance and Operations Apps Developer

Question 48 of 103 from exam MB-500: Microsoft Dynamics 365: Finance and Operations Apps Developer

Question

You have an enumeration named truckStatus that has the following statuses: -> Empty -> Loaded -> Completed You have the following code:

switch (trunkTable.TruckStatus)

{
case TruckStatus::Empty:
Info("1");
break;

case TruckStatus::Loaded:
Info("2")5

break;
case TruckStatus: :Completed:
Info("3")5

break;

You need to add the following statuses to the enumeration: Quarantine, InTransit What should you do?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D.

A.