On Amazon Alexa enabled devices with a screen, which of the following standard built-in intents are handled by Alexa on the skill's behalf and are not forwarded to the skill? (Choose three.)
A. AMAZON.NextIntent
B. AMAZON.MoreIntent
C. AMAZON.ScrollDownIntent
D. AMAZON.PreviousIntent
E. AMAZON.StartOverIntent
F. AMAZON.NavigateHomeIntent
An Alexa Skill Builder needs to set up an Amazon Alexa skill beta test. What user identifier should be used to add beta testers?
A. AWS account number
B. Alexa user email address
C. Amazon vendor ID
D. Amazon customer ID
An Amazon Alexa interactive story skill needs to provide users with the option to resume the skill from where users left off when they last used the skill.
Where should the data be stored to ensure that the skill will start at the correct location?
A. In a JSON file along with the skill's AWS Lambda function
B. In Amazon DynamoDB
C. In the skill's session object
D. In the skills's request object
According to Amazon Alexa best practices, how should an Alexa Skill Builder prevent unintentional requests against a skill's backend when using AWS Lambda?
A. Ensure that the session ID provided by the request to Lambda is not already in use.
B. Rotate the Lambda ARN regularly to prevent others from using the service.
C. Retrieve the Application ID property from the request JSON and validate it against the Lambda environment variables.
D. Provide the Lambda trigger with the Application ID so that it validates on the ask trigger.
An Alexa Skill Builder is developing a skill using AWS Lambda. When invoking the skill, Amazon Alexa responds "There was a problem with the requested skill's response."
The following message is displayed in Amazon CloudWatch Logs for the Lambda function.
Which of the following actions will resolve the problem?
A. Define a new intent named Unhandled in the skill interaction model and add an Unhandled intent handler to the Lambda function.
B. Add an .addErrorHandlers(
C. Add an intent handler for the SessionEndedRequest intent to the Lambda function to display detailed information about the error.
D. Add additional logic to the AMAZON.StopIntent handler in the Lambda function to display detailed information about the error.
An Alexa Skill Builder is using session attributes to maintain a user's state.
What can the Builder do to ensure that a user's session is not lost if they take too long to answer a question and the skill exists?
A. Set shouldEndSession to false in the response object to prevent the skill from exiting.
B. Handle the SessionEndedRequest request type and persist the user's session to a database.
C. Return false from the SessionEndedRequest handler so the session does not exist.
D. Return a reprompt in the response object from the SessionEndedRequest handler.
AMAZON.MoreIntent is comparable to which of the following Amazon Alexa intents? (Choose two.)
A. AMAZON.ResumeIntent
B. AMAZON.ScrollDownIntent
C. AMAZON.RepeatIntent
D. AMAZON.ScrollRightIntent
E. AMAZON.LoopOnIntent
An Alexa Skill Builder wants to implement in-skill purchasing to offer one-time purchases for access to premium content. The Builder created an entitlement product and deployed it successfully using the ASK CLI tool. When testing the custom BuyInskillProductIntent in the developer console, the Builder receives the following error:
Sorry, this product is not available with your current language setting.
How can this error be fixed?
A. Change the release date and redeploy the product
B. Change the locale in the Alexa Simulator tab in the developer console
C. Change the AWS Lambda function to include the correct locale in the Connections.SendRequest
directive
D. Change the language in the premium content
An Alexa Skill Builder is using the AudioPlayer.Play directive and would like to automatically start the next audio track at the end of the current track.
Which AudioPlayer playBehavior values will allow the Builder to achieve this without changing the audio currently playing? (Choose two.)
A. REPLACE_ALL
B. CLEAR_ENQUEUED
C. REPLACE_ENQUEUED
D. ENQUEUE
E. CLEAR_ALL
An Alexa Skill Builder wants to customize a welcome back message for each person who uses the skill.
The JSON input is shown below:
Which element from the request would the Builder use to accomplish this?
A. sessionId
B. userId
C. requestId
D. applicationId