An Alexa Skill Builder is developing a skill that tells users facts about their neighborhoods using their postal codes. When running the skill, users receive error messages from their Amazon Alexa devices. When the Builder checks the logs, error messages are being sent when the device location API is used to get users' postal codes.
What are the potential causes of this issue? (Choose two.)
A. The Alexa devices are registered in the incorrect postal code.
B. The AWS Lambda function is not registered to the skill.
C. The users have opted out of giving their location information.
D. The application ID of the skill does not match the expected application ID of the AWS Lambda function.
E. The skill is not registered to access information in the developer console.
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 Alexa Skill Builder is developing a custom skill to play a live audio stream. What two built-in intents are required to implement the AudioPlayer interface?
A. AMAZON.NextIntent and AMAZON.StopIntent
B. AMAZON.ResumeIntent and AMAZON.PauseIntent
C. AMAZON.CancelIntent and AMAZON.ResumeIntent
D. AMAZON.RepeatIntent and AMAZON.StopIntent
Before beginning the development of a skill, an Alexa Skill Builder wants to hear how a statement will be pronounced by Amazon Alexa in another locale.
How should the Builder test the pronounciation of the statement?
A. Use the Alexa Simulator tab in the developer console to interact with the skill using the selected locale.
B. Create a developer account for the specific locale, and use a device to interact with the skill.
C. Use Voice and Tone tab in the developer console to play the statement using the selected locale.
D. Use the Manual JSON tab in the developer console to create a sample JSON response
An Alexa Skill Builder is developing a complex skill to help users purchase items. The Builder has implemented the default AMAZON.HelpIntent, but when users ask for help they always reach the same unhelpful result.
How should the Builder enhance the experience to guide the users toward the end goal?
A. Check the state of the user conversation when AMAZON.HelpIntent is received to give contextual responses.
B. Implement AMAZON.FallbackIntent to give a response when an utterance is not understood.
C. Extend the default AMAZON.HelpIntent with more sample utterances.
D. Implement a custom intent users can request when they need help.
An Alexa Skill Builder wants to add a short audio clip to a skill with SSML. The Builder records a 6-second audio clip using a high-end microphone and recording application and exports the file with a bitrate of 48 kbps. The file is then uploaded to a public Amazon S3 bucket.
The Builder then updates the SSML to return:
When testing the skill, Amazon Alexa responds with "There was a problem with the requested skill's response" every time.
How should the Builder resolve this error?
A. Record a shorter audio clip.
B. Re-export the audio file with a smaller bitrate.
C. Re-export the audio file to .mp3 instead of .wav
D. Update the interaction model to enable the AudioPlayer interface
An Alexa Skill Builder noticed that a large percentage of a food ordering skill's customers are not completing their transactions. The Builder needs to know what portion of the customers are leaving the skill by not responding, compared to the portion of customers who receive an error.
Which report inside the Analytics section of the developer console will provide this information?
A. Session Type Distribution
B. Unique Customers Per Intent
C. Average Session Per Customer
D. Failed Utterances Per Intent
An Alexa Skill Builder published a skill that streams sounds to help users relax. The skill is becoming very popular and is available in many different locales around the world. More than 20.000 users are using the skill every week, and more than 500 users are added daily. The sound files are stored in Amazon S3.
What can the Builder do to ensure low latency and the best possible streaming performance?
A. Use Amazon CloudFront to deliver content and cache the audio files across different geographical regions.
B. Migrate the sound files from Amazon S3 into Amazon Redshift to speed up the read operations.
C. Use Elastic Load Balancing to handle the traffic generated by the increasing number of users.
D. Enable cross-region replication on the Amazon S3 bucket policy to improve the skill's performance.
An Alexa Skill Builder is designing a skill with an intent that needs six slots to be filled. It is unlikely that a user will provide all the slot values in a single utterance, so the slot fulfillment should be split up into a multi-turn conversation.
What can the Builder do in the developer console to have Amazon Alexa elicit any missing slots, without specifying each of the slots in the backend code?
A. Keep track of what slots are filled in session attributes, and in the backend code, prompt the user for the missing slots using Dialog.ElicitSlot.
B. Mark those six slots are required, fill in the necessary prompts, and in the backend code, use the Dialog.Delegate directive until all slots are filled.
C. Mark those six slots are required, fill in the necessary prompts, and in the backend code, use the Dialog.ConfirmSlot directive until all slots are filled
D. Mark those six slots are required, fill in the necessary prompts, and in the backend code, use the Dialog.ElicitSlot directive until all slots are filled.