"A solution developer has designed the following message flow to handle a special promotion for an airline, to achieve Silver, Gold, or Platinum frequent flyer status before an upcoming flight. The MQ Input node receives XML messages with the customer information, including their name, frequent flyer number, their current status, current mileage, and the mileage of their upcoming flight. The Compute node calculates their new mileage by adding current mileage and the upcoming trip mileage. A Decision Service then executes rules to determine if their status is upgraded and update the status element if needed. The Route node has output terminals named Silver, Gold, and Platinum, as well as the standard Default terminal, to route the message appropriately based on the status field of the customer.
If the message below is processed by the following message flow, at which MQ Output node
does the message get written?
<?xml version=""1.0"" encoding=""UTF-8""?>
<Customer>
<Name>John Flyer</Name>
<FrequentFlyerNumber></FrequentFlyerNumber>
<Status>Gold</Status>
<CurrentMileage>19500</CurrentMileage>
<TripMileage>575</TripMileage>
<NewMileage>0</NewMileage>
</Customer>"
Select one of the following: