ExamGecko
Home / Amazon / AXS-C01 / List of questions
Ask Question

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

List of questions

Question 31

Report
Export
Collapse

What are the prerequisites for implementing account linking for Amazon Alexa smart home skills?

OAuth 2.0 with either implicit grant flow or authorization code grant flow
OAuth 2.0 with either implicit grant flow or authorization code grant flow
OAuth 2.0 with authorization code grant flow
OAuth 2.0 with authorization code grant flow
OpenID Connect wit JSON.Web Token (JWT)
OpenID Connect wit JSON.Web Token (JWT)
OAuth 1.0/2.0 with implicit grant flow
OAuth 1.0/2.0 with implicit grant flow
Suggested answer: B

Explanation:

Reference: https://developer.amazon.com/en-US/docs/alexa/account-linking/account-linking-for-sh-and-other.html#prerequisites

asked 16/09/2024
Hayat Hassan
44 questions

Question 32

Report
Export
Collapse

An Alexa Skill Builder has built a new custom skill backed by an AWS Lambda function. The Lambda function executes successfully from the Lambda console, however, the Lambda function cannot be successfully invoked in the developer console or from an Amazon Alexa enabled device. No error messages show in the function’s Amazon CloudWatch Logs. The Builder confirmed the endpoint has the correct ARN.

What is likely causing this issue and how can it be corrected?

The Lambda application code has a bug that is causing it to crash. Modify the code to fix the bug, then redeploy the Lambda function.
The Lambda application code has a bug that is causing it to crash. Modify the code to fix the bug, then redeploy the Lambda function.
The ASK SDK was not deployed with the Lambda function. Add the ASK SDK, then redeploy the Lambda function.
The ASK SDK was not deployed with the Lambda function. Add the ASK SDK, then redeploy the Lambda function.
The ASK trigger for the Lambda function has been restricted to the wrong skill ID. Re-create the trigger with the correct skill ID.
The ASK trigger for the Lambda function has been restricted to the wrong skill ID. Re-create the trigger with the correct skill ID.
The Lambda role does not have the correct AWS IAM permission. Update the IAM role associated with the Lambda function.
The Lambda role does not have the correct AWS IAM permission. Update the IAM role associated with the Lambda function.
Suggested answer: A
asked 16/09/2024
miquel martin leiva
42 questions

Question 33

Report
Export
Collapse

An Alexa Skill Builder is developing a skill that enables users to purchase train tickets. The Builder wants to give users the ability to modify the departure time if they are misunderstood, before the skill proceeds to purchase the tickets.

Which option should be used to implement this functionality within the session?

Implement AMAZON.FallbackIntent so the user can stop the execution when they have been misunderstood.
Implement AMAZON.FallbackIntent so the user can stop the execution when they have been misunderstood.
Implement AMAZON.StopIntent so the user can stop the execution and implement reprompt with a new invocation of the skill.
Implement AMAZON.StopIntent so the user can stop the execution and implement reprompt with a new invocation of the skill.
Implement AMAZON.CancelIntent so the user can cancel the order, then set shouldEndSession to false, and prompt the user for the next action.
Implement AMAZON.CancelIntent so the user can cancel the order, then set shouldEndSession to false, and prompt the user for the next action.
Implement the welcome message, providing clear instructions to the user describing how to format an order.
Implement the welcome message, providing clear instructions to the user describing how to format an order.
Suggested answer: C
asked 16/09/2024
Javier Escobar
34 questions

Question 34

Report
Export
Collapse

A skill contains a PlanMyTrip intent configured to require slots fromCity and toCity. It contains the following interaction:

Alexa: What city are you leaving from?

User: I’m leaving from Seattle.

Alexa: You want to fly out of Seattle Tacoma International Airport, right?

User: Yes

Which of the following should the Builder use to confirm the value of the fromCity slot only? (Choose two.)

Use the Dialog.ConfirmSlot directive, including the full airport name in the outputSpeech object.
Use the Dialog.ConfirmSlot directive, including the full airport name in the outputSpeech object.
Use the Dialog.ConfirmIntent directive, including the full airport name in the updatedIntent object.
Use the Dialog.ConfirmIntent directive, including the full airport name in the updatedIntent object.
Use the Dialog.Delegate directive, including the full airport name in the updatedIntent object.
Use the Dialog.Delegate directive, including the full airport name in the updatedIntent object.
Use the Dialog.Delegate directive, including the full airport name in the outputSpeech object.
Use the Dialog.Delegate directive, including the full airport name in the outputSpeech object.
Use the Dialog.ElicitSlot directive, including the full airport name in the updatedIntent object.
Use the Dialog.ElicitSlot directive, including the full airport name in the updatedIntent object.
Suggested answer: B, D
asked 16/09/2024
Robert Fox
50 questions

Question 35

Report
Export
Collapse

An Alexa Skill Builder is troubleshooting issues with a custom skill backed by an AWS Lambda function that integrates with an external API controlling a light bulb. The Builder observes that when saying "Alexa, turn on the light" the response is "light is not responding" and 10 seconds later, the light turns on.

What is the MOST likely cause for this issue and how can it be solved?

The Lambda function is not executing fast enough. Double the currently specified Lambda memory allocation in the Lambda basic settings section.
The Lambda function is not executing fast enough. Double the currently specified Lambda memory allocation in the Lambda basic settings section.
The default Lambda function timeout setting is too short and the Lambda function times out before the response from the external API can be processed and a reply can be sent back to Amazon Alexa. Increase the Lambda timeout limit.
The default Lambda function timeout setting is too short and the Lambda function times out before the response from the external API can be processed and a reply can be sent back to Amazon Alexa. Increase the Lambda timeout limit.
There are too many concurrent Lambda functions running, causing the existing Lambda function to block and then time out before a response can be returned to Amazon Alexa. Increase the Lambda function reserve concurrency value to 30, then verify that the function can complete its work within 10 seconds.
There are too many concurrent Lambda functions running, causing the existing Lambda function to block and then time out before a response can be returned to Amazon Alexa. Increase the Lambda function reserve concurrency value to 30, then verify that the function can complete its work within 10 seconds.
There is a bug in the Lambda function code preventing the external API from being called. Enable Lambda debugging and error handling and check Amazon CloudWatch Logs for the error, then modify the code accordingly.
There is a bug in the Lambda function code preventing the external API from being called. Enable Lambda debugging and error handling and check Amazon CloudWatch Logs for the error, then modify the code accordingly.
Suggested answer: D
asked 16/09/2024
Maxim Shpakov
41 questions

Question 36

Report
Export
Collapse

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.)

Change the Amazon Alexa default timeout to 5 seconds.
Change the Amazon Alexa default timeout to 5 seconds.
Change the default timeout of the Lambda function to 5 seconds.
Change the default timeout of the Lambda function to 5 seconds.
Call the Progressive Response API and send a directive to reduce latency.
Call the Progressive Response API and send a directive to reduce latency.
Increase the size of the memory allocated to the Lambda function.
Increase the size of the memory allocated to the Lambda function.
Clone the Lambda function to another AWS Region.
Clone the Lambda function to another AWS Region.
Suggested answer: B, E
asked 16/09/2024
Keletso Rafedile
34 questions

Question 37

Report
Export
Collapse

An Alexa Skill Builder wants to name a skill using a company’s branded acronym, "NAT Systems."

Which invocation name is valid?

n a t systems
n a t systems
n-a-t systems
n-a-t systems
n. a. t. systems
n. a. t. systems
NAT Systems
NAT Systems
Suggested answer: D

Explanation:

Reference: https://developer.amazon.com/en-US/docs/alexa/custom-skills/choose-the-invocation-name-for-a-custom-skill.html

asked 16/09/2024
Natalia Novikova
40 questions

Question 38

Report
Export
Collapse

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:

rendered as a gray screen.
rendered as a gray screen.
rendered using the skill icon as the foreground image.
rendered using the skill icon as the foreground image.
rendered using the skill icon as the background image.
rendered using the skill icon as the background image.
rendered using BodyTemplate1.
rendered using BodyTemplate1.
Suggested answer: D

Explanation:

Reference: https://developer.amazon.com/en-US/docs/alexa/custom-skills/best-practices-for-skill-card-design.html

asked 16/09/2024
Russo, Anna
25 questions

Question 39

Report
Export
Collapse

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?

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.
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.
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.
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.
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.
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.
Record the entire story as custom audio and stream the audio stored on Amazon S3 using the AudioPlayer interface.
Record the entire story as custom audio and stream the audio stored on Amazon S3 using the AudioPlayer interface.
Suggested answer: A

Explanation:

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

asked 16/09/2024
Karsten Seifert
34 questions

Question 40

Report
Export
Collapse

AMAZON.MoreIntent is comparable to which of the following Amazon Alexa intents? (Choose two.)

AMAZON.ResumeIntent
AMAZON.ResumeIntent
AMAZON.ScrollDownIntent
AMAZON.ScrollDownIntent
AMAZON.RepeatIntent
AMAZON.RepeatIntent
AMAZON.ScrollRightIntent
AMAZON.ScrollRightIntent
AMAZON.LoopOnIntent
AMAZON.LoopOnIntent
Suggested answer: B, D

Explanation:

Reference: https://developer.amazon.com/en-US/docs/alexa/custom-skills/standard-built-in-intents.html#amazonmoreintent

asked 16/09/2024
MM rahn
41 questions
Total 65 questions
Go to page: of 7
Search

Related questions