ExamGecko
Home Home / Amazon / AXS-C01

Amazon AXS-C01 Practice Test - Questions Answers

Question list
Search
Search

List of questions

Search

Related questions











Which of the following are ways that a user can interact with an Amazon Alexa skill using both voice and non-voice methods? (Choose three.)

A.
Scrolling through a list
A.
Scrolling through a list
Answers
B.
Selecting an action
B.
Selecting an action
Answers
C.
Zooming in on an image
C.
Zooming in on an image
Answers
D.
Pausing a video
D.
Pausing a video
Answers
E.
Muting the device
E.
Muting the device
Answers
F.
Pairing with Bluetooth
F.
Pairing with Bluetooth
Answers
Suggested answer: D, E, F

An Alexa Skill Builder wants a skill to inform the users of the number of times they have launched the skill.

What approach should the Builder take to track this information?

A.
Store and increment a launchCount session attribute.
A.
Store and increment a launchCount session attribute.
Answers
B.
Using the ASK SDK, implement a persistent attribute that is stored and retrieved from Amazon DynamoDB.
B.
Using the ASK SDK, implement a persistent attribute that is stored and retrieved from Amazon DynamoDB.
Answers
C.
Perform a scan of the Amazon DynamoDB table for the number of records and count each record as a skill launch.
C.
Perform a scan of the Amazon DynamoDB table for the number of records and count each record as a skill launch.
Answers
D.
Set up a global variable in the code project that increments each time the code is invoked by Amazon Alexa.
D.
Set up a global variable in the code project that increments each time the code is invoked by Amazon Alexa.
Answers
Suggested answer: B

Explanation:

Reference: https://developer.amazon.com/en-US/docs/alexa/alexa-skills-kit-sdk-for-nodejs/manage-attributes.html

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.
A.
The Alexa devices are registered in the incorrect postal code.
Answers
B.
The AWS Lambda function is not registered to the skill.
B.
The AWS Lambda function is not registered to the skill.
Answers
C.
The users have opted out of giving their location information.
C.
The users have opted out of giving their location information.
Answers
D.
The application ID of the skill does not match the expected application ID of the AWS Lambda function.
D.
The application ID of the skill does not match the expected application ID of the AWS Lambda function.
Answers
E.
The skill is not registered to access information in the developer console.
E.
The skill is not registered to access information in the developer console.
Answers
Suggested answer: C, D

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
A.
AMAZON.NextIntent
Answers
B.
AMAZON.MoreIntent
B.
AMAZON.MoreIntent
Answers
C.
AMAZON.ScrollDownIntent
C.
AMAZON.ScrollDownIntent
Answers
D.
AMAZON.PreviousIntent
D.
AMAZON.PreviousIntent
Answers
E.
AMAZON.StartOverIntent
E.
AMAZON.StartOverIntent
Answers
F.
AMAZON.NavigateHomeIntent
F.
AMAZON.NavigateHomeIntent
Answers
Suggested answer: C, E, F

Explanation:

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

An Alexa Skill Builder wants to create a skill that asks the user two yes/no questions:

Alexa: Do you like cats?

Alexa: Do you like dogs?

When the username answers "yes", how should the Builder code the handler to know which question the answer refers to?

A.
Using session attributes, store the previous question as the context for use in the AMAZON.YesIntent handler.
A.
Using session attributes, store the previous question as the context for use in the AMAZON.YesIntent handler.
Answers
B.
Within the AMAZON.YesIntent handler, prompt the user to repeat the name of the animal that they like.
B.
Within the AMAZON.YesIntent handler, prompt the user to repeat the name of the animal that they like.
Answers
C.
Within the AMAZON.YesIntent handler, define a slot to store and retrieve the previously asked question. D. Access Amazon CloudWatch Logs and retrieve the previous question topic from the recent log messages.
C.
Within the AMAZON.YesIntent handler, define a slot to store and retrieve the previously asked question. D. Access Amazon CloudWatch Logs and retrieve the previous question topic from the recent log messages.
Answers
Suggested answer: C

Explanation:

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

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
A.
AWS account number
Answers
B.
Alexa user email address
B.
Alexa user email address
Answers
C.
Amazon vendor ID
C.
Amazon vendor ID
Answers
D.
Amazon customer ID
D.
Amazon customer ID
Answers
Suggested answer: B

Explanation:

Reference: https://developer.amazon.com/en-US/docs/alexa/custom-skills/skills-beta-testing-for-alexa-skills.html

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
A.
AMAZON.NextIntent and AMAZON.StopIntent
Answers
B.
AMAZON.ResumeIntent and AMAZON.PauseIntent
B.
AMAZON.ResumeIntent and AMAZON.PauseIntent
Answers
C.
AMAZON.CancelIntent and AMAZON.ResumeIntent
C.
AMAZON.CancelIntent and AMAZON.ResumeIntent
Answers
D.
AMAZON.RepeatIntent and AMAZON.StopIntent
D.
AMAZON.RepeatIntent and AMAZON.StopIntent
Answers
Suggested answer: B

Explanation:

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

An Alexa Skill Builder is trying to enable a skill in the developer console. The skill model builds without errors, but the Builder is unable to turn on testing.

What could be causing this?

A.
The skill’s slot types are invalid.
A.
The skill’s slot types are invalid.
Answers
B.
The skill does not have an example phrase
B.
The skill does not have an example phrase
Answers
C.
The skill does not have an invocation name
C.
The skill does not have an invocation name
Answers
D.
The skill does not have an endpoint
D.
The skill does not have an endpoint
Answers
Suggested answer: C

Explanation:

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

An Alexa Skill Builder has published a skill to the Alexa Skills Store, but soon after realizes that Amazon Alexa is saying an incorrect word in one of the responses.

What is the recommended method for the Builder to correct this issue?

A.
Correct the response in a new endpoint, and after updating the In Development version of the skill, redeploy it.
A.
Correct the response in a new endpoint, and after updating the In Development version of the skill, redeploy it.
Answers
B.
Access the In Development version of the skill, alter the intent that was causing the incorrect word, then resubmit the skill for certification.
B.
Access the In Development version of the skill, alter the intent that was causing the incorrect word, then resubmit the skill for certification.
Answers
C.
Edit the response in a new endpoint, and after updating the In Development version of the skill, resubmit it for certification.
C.
Edit the response in a new endpoint, and after updating the In Development version of the skill, resubmit it for certification.
Answers
D.
Correct the response in the existing endpoint of the Live version of the skill, then redeploy it.
D.
Correct the response in the existing endpoint of the Live version of the skill, then redeploy it.
Answers
Suggested answer: A

An Alexa Skill Builder needs to change the invocation name of a new skill.

What status should the skill be in to make this change?

A.
In Development
A.
In Development
Answers
B.
Build
B.
Build
Answers
C.
In Certification
C.
In Certification
Answers
D.
Edit
D.
Edit
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

Total 65 questions
Go to page: of 7