ExamGecko
Home Home / Amazon / AXS-C01

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

Question list
Search
Search

List of questions

Search

Related questions











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

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

Explanation:

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

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?

A.
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.
A.
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.
Answers
B.
The ASK SDK was not deployed with the Lambda function. Add the ASK SDK, then redeploy the Lambda function.
B.
The ASK SDK was not deployed with the Lambda function. Add the ASK SDK, then redeploy the Lambda function.
Answers
C.
The ASK trigger for the Lambda function has been restricted to the wrong skill ID. Re-create the trigger with the correct skill ID.
C.
The ASK trigger for the Lambda function has been restricted to the wrong skill ID. Re-create the trigger with the correct skill ID.
Answers
D.
The Lambda role does not have the correct AWS IAM permission. Update the IAM role associated with the Lambda function.
D.
The Lambda role does not have the correct AWS IAM permission. Update the IAM role associated with the Lambda function.
Answers
Suggested answer: A

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?

A.
Implement AMAZON.FallbackIntent so the user can stop the execution when they have been misunderstood.
A.
Implement AMAZON.FallbackIntent so the user can stop the execution when they have been misunderstood.
Answers
B.
Implement AMAZON.StopIntent so the user can stop the execution and implement reprompt with a new invocation of the skill.
B.
Implement AMAZON.StopIntent so the user can stop the execution and implement reprompt with a new invocation of the skill.
Answers
C.
Implement AMAZON.CancelIntent so the user can cancel the order, then set shouldEndSession to false, and prompt the user for the next action.
C.
Implement AMAZON.CancelIntent so the user can cancel the order, then set shouldEndSession to false, and prompt the user for the next action.
Answers
D.
Implement the welcome message, providing clear instructions to the user describing how to format an order.
D.
Implement the welcome message, providing clear instructions to the user describing how to format an order.
Answers
Suggested answer: C

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

A.
Use the Dialog.ConfirmSlot directive, including the full airport name in the outputSpeech object.
A.
Use the Dialog.ConfirmSlot directive, including the full airport name in the outputSpeech object.
Answers
B.
Use the Dialog.ConfirmIntent directive, including the full airport name in the updatedIntent object.
B.
Use the Dialog.ConfirmIntent directive, including the full airport name in the updatedIntent object.
Answers
C.
Use the Dialog.Delegate directive, including the full airport name in the updatedIntent object.
C.
Use the Dialog.Delegate directive, including the full airport name in the updatedIntent object.
Answers
D.
Use the Dialog.Delegate directive, including the full airport name in the outputSpeech object.
D.
Use the Dialog.Delegate directive, including the full airport name in the outputSpeech object.
Answers
E.
Use the Dialog.ElicitSlot directive, including the full airport name in the updatedIntent object.
E.
Use the Dialog.ElicitSlot directive, including the full airport name in the updatedIntent object.
Answers
Suggested answer: B, D

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?

A.
The Lambda function is not executing fast enough. Double the currently specified Lambda memory allocation in the Lambda basic settings section.
A.
The Lambda function is not executing fast enough. Double the currently specified Lambda memory allocation in the Lambda basic settings section.
Answers
B.
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.
B.
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.
Answers
C.
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.
C.
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.
Answers
D.
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.
D.
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.
Answers
Suggested answer: D

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.
A.
Change the Amazon Alexa default timeout to 5 seconds.
Answers
B.
Change the default timeout of the Lambda function to 5 seconds.
B.
Change the default timeout of the Lambda function to 5 seconds.
Answers
C.
Call the Progressive Response API and send a directive to reduce latency.
C.
Call the Progressive Response API and send a directive to reduce latency.
Answers
D.
Increase the size of the memory allocated to the Lambda function.
D.
Increase the size of the memory allocated to the Lambda function.
Answers
E.
Clone the Lambda function to another AWS Region.
E.
Clone the Lambda function to another AWS Region.
Answers
Suggested answer: B, E

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
A.
n a t systems
Answers
B.
n-a-t systems
B.
n-a-t systems
Answers
C.
n. a. t. systems
C.
n. a. t. systems
Answers
D.
NAT Systems
D.
NAT Systems
Answers
Suggested answer: D

Explanation:

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

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.
A.
rendered as a gray screen.
Answers
B.
rendered using the skill icon as the foreground image.
B.
rendered using the skill icon as the foreground image.
Answers
C.
rendered using the skill icon as the background image.
C.
rendered using the skill icon as the background image.
Answers
D.
rendered using BodyTemplate1.
D.
rendered using BodyTemplate1.
Answers
Suggested answer: D

Explanation:

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

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

Explanation:

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

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

A.
AMAZON.ResumeIntent
A.
AMAZON.ResumeIntent
Answers
B.
AMAZON.ScrollDownIntent
B.
AMAZON.ScrollDownIntent
Answers
C.
AMAZON.RepeatIntent
C.
AMAZON.RepeatIntent
Answers
D.
AMAZON.ScrollRightIntent
D.
AMAZON.ScrollRightIntent
Answers
E.
AMAZON.LoopOnIntent
E.
AMAZON.LoopOnIntent
Answers
Suggested answer: B, D

Explanation:

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

Total 65 questions
Go to page: of 7