ExamGecko
Home Home / Amazon / AXS-C01

Amazon AXS-C01 Practice Test - Questions Answers, Page 5

Question list
Search
Search

List of questions

Search

Related questions











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
A.
Customers
Answers
B.
Interaction Path
B.
Interaction Path
Answers
C.
Sessions
C.
Sessions
Answers
D.
Retention
D.
Retention
Answers
Suggested answer: D

Explanation:

Reference: https://developer.amazon.com/en-US/docs/alexa/devconsole/measure-skill-usage.html

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.
A.
Confirm that apiAccessToken verifies that the user is in the resource server and that the token has not expired.
Answers
B.
Confirm that accessToken verifies that the token has not expired and that the user is the resource owner.
B.
Confirm that accessToken verifies that the token has not expired and that the user is the resource owner.
Answers
C.
Confirm that accessToken verifies that the user is in the resource server and that the token has not expired.
C.
Confirm that accessToken verifies that the user is in the resource server and that the token has not expired.
Answers
D.
Confirm that apiAccessToken verifies that the token has not expired and that the user is the resource owner.
D.
Confirm that apiAccessToken verifies that the token has not expired and that the user is the resource owner.
Answers
Suggested answer: A

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.
A.
Use an Alexa display template, such as BodyTemplate1.
Answers
B.
Send a Simple card to the user.
B.
Send a Simple card to the user.
Answers
C.
Send a Standard card to the user.
C.
Send a Standard card to the user.
Answers
D.
Send a LinkAccount card to the user.
D.
Send a LinkAccount card to the user.
Answers
Suggested answer: C

Explanation:

Reference: https://developer.amazon.com/en-US/docs/alexa/custom-skills/include-a-card-in-your-skills-response.html#create-a-card-to-display-text-and-an-image

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.
A.
Use the AWS Lambda test feature to send a request with the given intent and slot combination.
Answers
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.
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.
Answers
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
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
Answers
D.
Use the Alexa Simulator tab on the Test page of the developer console to test the utterances the users have reported.
D.
Use the Alexa Simulator tab on the Test page of the developer console to test the utterances the users have reported.
Answers
Suggested answer: B

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.
A.
Check the state of the user conversation when AMAZON.HelpIntent is received to give contextual responses.
Answers
B.
Implement AMAZON.FallbackIntent to give a response when an utterance is not understood.
B.
Implement AMAZON.FallbackIntent to give a response when an utterance is not understood.
Answers
C.
Extend the default AMAZON.HelpIntent with more sample utterances.
C.
Extend the default AMAZON.HelpIntent with more sample utterances.
Answers
D.
Implement a custom intent users can request when they need help.
D.
Implement a custom intent users can request when they need help.
Answers
Suggested answer: A

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.
A.
Record a shorter audio clip.
Answers
B.
Re-export the audio file with a smaller bitrate.
B.
Re-export the audio file with a smaller bitrate.
Answers
C.
Re-export the audio file to .mp3 instead of .wav
C.
Re-export the audio file to .mp3 instead of .wav
Answers
D.
Update the interaction model to enable the AudioPlayer interface
D.
Update the interaction model to enable the AudioPlayer interface
Answers
Suggested answer: B

During testing of a new Amazon Alexa skill, the skill is repeatedly failing and invoking the function defined in the addErrorHandler method specified on the SkillBuilder object. Upon inspection of Amazon CloudWatch Logs, the Alexa Skill Builder establishes that the failure is occurring whenever AMAZON.HelpIntent is being received.

How should this error be corrected?

A.
AMAZON.HelpIntent should be handled by the SDK. The Builder should raise a support ticket with Amazon.
A.
AMAZON.HelpIntent should be handled by the SDK. The Builder should raise a support ticket with Amazon.
Answers
B.
The Builder should ensure that the intent handler is coded so that it tests for AMAZON.HelpIntent in its canHandle method, and when detected, returns true.
B.
The Builder should ensure that the intent handler is coded so that it tests for AMAZON.HelpIntent in its canHandle method, and when detected, returns true.
Answers
C.
The Builder should add logic to provide help instructions to the function defined in the addErrorHandler method specified on the SkillBuilder object.
C.
The Builder should add logic to provide help instructions to the function defined in the addErrorHandler method specified on the SkillBuilder object.
Answers
D.
The Builder should add an AMAZON.HelpIntent entry to the interaction model to ensure the request for help is recognized by the skill.
D.
The Builder should add an AMAZON.HelpIntent entry to the interaction model to ensure the request for help is recognized by the skill.
Answers
Suggested answer: B

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"?

A.
PlanMyTripIntent
A.
PlanMyTripIntent
Answers
B.
AMAZON.CancelIntent
B.
AMAZON.CancelIntent
Answers
C.
AMAZON.YesIntent
C.
AMAZON.YesIntent
Answers
D.
LaunchRequest
D.
LaunchRequest
Answers
Suggested answer: D

Explanation:

Reference: https://developer.amazon.com/en-US/docs/alexa/custom-skills/request-types-reference.html

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
A.
Change the release date and redeploy the product
Answers
B.
Change the locale in the Alexa Simulator tab in the developer console
B.
Change the locale in the Alexa Simulator tab in the developer console
Answers
C.
Change the AWS Lambda function to include the correct locale in the Connections.SendRequest directive D. Change the language in the premium content
C.
Change the AWS Lambda function to include the correct locale in the Connections.SendRequest directive D. Change the language in the premium content
Answers
Suggested answer: C

Explanation:

Reference: http://alexaskillstutorials.com

An Alexa Skill Builder made changes to an AWS Lambda function that is used as the endpoint for a skill. The Builder discovers that the skill now returns an error when it is launched.

How can the Builder use the Lambda console to trigger the function and debug the code?

A.
Create a Lambda test event using the JSON request as input to find the specific error within the code.
A.
Create a Lambda test event using the JSON request as input to find the specific error within the code.
Answers
B.
Create a Lambda test event using the JSON response as output to find the specific error within the code.
B.
Create a Lambda test event using the JSON response as output to find the specific error within the code.
Answers
C.
Check the JSON response to see if there are any syntax errors in the code.
C.
Check the JSON response to see if there are any syntax errors in the code.
Answers
D.
Create a Lambda test event using the JSON interaction model to find the specific error within the code.
D.
Create a Lambda test event using the JSON interaction model to find the specific error within the code.
Answers
Suggested answer: A

Explanation:

Reference: https://developer.amazon.com/en-US/docs/alexa/custom-skills/host-a-custom-skill-as-an-aws-lambda-function.html

Total 65 questions
Go to page: of 7