AWS Certified Alexa Skill Builder – Specialty — Question 15

An Amazon Alexa trip planner skill has several intents and slots. One of the intents is PlanMyTripIntent and some of the slots are fromCity, toCity, departDate, and returnDate. The following is a sample dialog:
User: Ask plan my trip to start a new trip leaving from Seattle.
Alexa: You said you are leaving from Seattle, right?

User: Yes -
Alexa: I've saved your trip. Do you want to create another trip?

User: Yes -
What will be invoked upon the user's final "Yes"?

Answer options

Correct answer: D

Explanation

The 'LaunchRequest' is invoked to start a new session or initiate the skill again. The other options do not fit this context: 'PlanMyTripIntent' pertains to planning a trip, 'AMAZON.CancelIntent' is used to cancel actions, and 'AMAZON.YesIntent' simply acknowledges a positive response, but does not initiate a new process.