AWS Certified Alexa Skill Builder – Specialty – Question45

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.

Correct Answer: A

AWS Certified Alexa Skill Builder – Specialty – Question44

An Alexa Skill Builder receives feedback from users that a specific utterance causes Amazon Alexa to trigger the skill’s AMAZON.HelpIntent rather than triggering the correct intent and slot.
How can the Builder reproduce this behavior to troubleshoot the problem?

A.
Use the AWS Lambda test feature to send a request with the given intent and slot combination.
B. Set up a unit test in the code base to simulate what happens when the given intent and slot combination are dispatched within the skill.
C. Use the Manual JSON tab on the Test page of the developer console to see what happens when a request for the given intent and slot combination is sent to the skill
D. Use the Alexa Simulator tab on the Test page of the developer console to test the utterances the users have reported.

Correct Answer: B

AWS Certified Alexa Skill Builder – Specialty – Question43

An Alexa Skill Builder needs to display an image and some additional text to users of a skill.
Which approach will work with any Amazon Alexa enabled device?

A.
Use an Alexa display template, such as BodyTemplate1.
B. Send a Simple card to the user.
C. Send a Standard card to the user.
D. Send a LinkAccount card to the user.

AWS Certified Alexa Skill Builder – Specialty – Question42

An Amazon Alexa Skill with account linking receives the following request from Alexa:

Before responding to the request, how should the Alexa Skill Builder verify that the request came from a user with a valid service account?

A.
Confirm that apiAccessToken verifies that the user is in the resource server and that the token has not expired.
B. Confirm that accessToken verifies that the token has not expired and that the user is the resource owner.
C. Confirm that accessToken verifies that the user is in the resource server and that the token has not expired.
D. Confirm that apiAccessToken verifies that the token has not expired and that the user is the resource owner.

Correct Answer: A

AWS Certified Alexa Skill Builder – Specialty – Question41

An Alexa Skill Builder is interested in gathering information about returning users.
What analytics tool in the developer console would provide the Builder with this information?

A.
Customers
B. Interaction Path
C. Sessions
D. Retention

AWS Certified Alexa Skill Builder – Specialty – Question40

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

AWS Certified Alexa Skill Builder – Specialty – Question39

An Alexa Skill Builder is building an interactive storytelling skill where the user can choose their own path through the story. The Builder wants Amazon Alexa to narrate the story and use custom audio for the dialogue for each character, along with various sound effects.
How can these requirements be met?

A.
Record custom audio for each segment of the story, then stream audio files stored on Amazon S3 using the AudioPlayer interface for each segment of the story.
B. Develop each response as text, and let Alexa speak each part differently using SSML markup for <amazon:effect> to alter the Alexa voice for each character.
C. Record custom audio for each character voice and the sound effects in the story, then include the custom audio using SSML markup in the response.
D. Record the entire story as custom audio and stream the audio stored on Amazon S3 using the AudioPlayer interface.

AWS Certified Alexa Skill Builder – Specialty – Question38

An Alexa Skill Builder did not include a display template in a skill.
When the skill is used with an Amazon Alexa enabled device with a screen, cards used in the skill are:

A.
rendered as a gray screen.
B. rendered using the skill icon as the foreground image.
C. rendered using the skill icon as the background image.
D. rendered using BodyTemplate1.

AWS Certified Alexa Skill Builder – Specialty – Question37

An Alexa Skill Builder wants to name a skill using a company’s branded acronym, “NAT Systems.”
Which invocation name is valid?

A.
n a t systems
B. n-a-t systems
C. n. a. t. systems
D. NAT Systems

AWS Certified Alexa Skill Builder – Specialty – Question36

An Alexa Skill Builder built a skill using AWS Lambda. The Lambda function works when running the code on a local machine with a runtime of 4.5 seconds, but during skill testing, the Builder receives an error response.
Which collection of steps will address the issue? (Choose two.)

A.
Change the Amazon Alexa default timeout to 5 seconds.
B. Change the default timeout of the Lambda function to 5 seconds.
C. Call the Progressive Response API and send a directive to reduce latency.
D. Increase the size of the memory allocated to the Lambda function.
E. Clone the Lambda function to another AWS Region.

Correct Answer: BE