ExamGecko
Home Home / Amazon / AXS-C01

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

Question list
Search
Search

List of questions

Search

Related questions











An Alexa Skill Builder has created a taxi hiring skill. The skill needs to find out when the customer wants a taxi, where the customer is traveling from, and where the customer wants to go. The Builder is currently asking each question individually, in the following order:

"Where do you want to take a taxi from" "Where do you want to take a taxi to" "When do you need a taxi"

To ensure the voice interaction is flexible, how should this information be gathered regardless of the order in which the user provides it?

A.
Use a single intent and slot. Inspect the incoming slot value and categorize then response, then prompt for the remaining information.
A.
Use a single intent and slot. Inspect the incoming slot value and categorize then response, then prompt for the remaining information.
Answers
B.
Create an intent for each question and include slots for each piece of information on every intent C. Create three intents with one slot each. Use Dialog.ElicitSlot to fill the slots.
B.
Create an intent for each question and include slots for each piece of information on every intent C. Create three intents with one slot each. Use Dialog.ElicitSlot to fill the slots.
Answers
C.
Create a single intent with three slots. Use the Dialog.Delegate directive to fill the slots.
C.
Create a single intent with three slots. Use the Dialog.Delegate directive to fill the slots.
Answers
Suggested answer:

An Alexa Skill Builder noticed that a large percentage of a food ordering skill’s customers are not completing their transactions. The Builder needs to know what portion of the customers are leaving the skill by not responding, compared to the portion of customers who receive an error.

Which report inside the Analytics section of the developer console will provide this information?

A.
Session Type Distribution
A.
Session Type Distribution
Answers
B.
Unique Customers Per Intent
B.
Unique Customers Per Intent
Answers
C.
Average Session Per Customer
C.
Average Session Per Customer
Answers
D.
Failed Utterances Per Intent
D.
Failed Utterances Per Intent
Answers
Suggested answer: C

Explanation:

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

Which of the following occur when a beta test of a live skill times out?

(Choose two.)

A.
The beta tester will lose access to the beta skill and will need to reenable the live skill
A.
The beta tester will lose access to the beta skill and will need to reenable the live skill
Answers
B.
The beta tester will receive an email saying the beta test has ended
B.
The beta tester will receive an email saying the beta test has ended
Answers
C.
The administrator will receive an email confirming that the beta tester has been removed
C.
The administrator will receive an email confirming that the beta tester has been removed
Answers
D.
The beta tester will lose access to the beta skill but will maintain access to the live skill
D.
The beta tester will lose access to the beta skill but will maintain access to the live skill
Answers
E.
The beta skill history in the Amazon Alexa app will disappear once the beta test has ended
E.
The beta skill history in the Amazon Alexa app will disappear once the beta test has ended
Answers
Suggested answer: A, B

When testing an Amazon Alexa skill using the Test page in the developer console, the JSON output is null.

What is the MOST likely cause?

A.
The AWS Lambda function is encountering an error and is not returning a result.
A.
The AWS Lambda function is encountering an error and is not returning a result.
Answers
B.
The endpoint ARN has not been configured
B.
The endpoint ARN has not been configured
Answers
C.
The ASK has not been granted access to trigger the AWS Lambda function
C.
The ASK has not been granted access to trigger the AWS Lambda function
Answers
D.
Skill ID verification has been disabled
D.
Skill ID verification has been disabled
Answers
Suggested answer: B

An Alexa Skill Builder is creating a skill that requires the user to authenticate by speaking a PIN before an order status can be retrieved.

According to best practices, how should the PIN value be collected?

A.
Use AMAZON.SearchQuery
A.
Use AMAZON.SearchQuery
Answers
B.
Use AMAZON.FOUR_DIGIT_NUMBER
B.
Use AMAZON.FOUR_DIGIT_NUMBER
Answers
C.
Use multiple slots of type AMAZON.NUMBER
C.
Use multiple slots of type AMAZON.NUMBER
Answers
D.
Use a custom slot with zero to nine as values.
D.
Use a custom slot with zero to nine as values.
Answers
Suggested answer: D

An Alexa Skill Builder published a skill that streams sounds to help users relax. The skill is becoming very popular and is available in many different locales around the world. More than 20.000 users are using the skill every week, and more than 500 users are added daily. The sound files are stored in Amazon S3.

What can the Builder do to ensure low latency and the best possible streaming performance?

A.
Use Amazon CloudFront to deliver content and cache the audio files across different geographical regions.
A.
Use Amazon CloudFront to deliver content and cache the audio files across different geographical regions.
Answers
B.
Migrate the sound files from Amazon S3 into Amazon Redshift to speed up the read operations.
B.
Migrate the sound files from Amazon S3 into Amazon Redshift to speed up the read operations.
Answers
C.
Use Elastic Load Balancing to handle the traffic generated by the increasing number of users.
C.
Use Elastic Load Balancing to handle the traffic generated by the increasing number of users.
Answers
D.
Enable cross-region replication on the Amazon S3 bucket policy to improve the skill’s performance.
D.
Enable cross-region replication on the Amazon S3 bucket policy to improve the skill’s performance.
Answers
Suggested answer: D

Explanation:

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

An Alexa Skill Builder is using the AudioPlayer.Play directive and would like to automatically start the next audio track at the end of the current track.

Which AudioPlayer playBehavior values will allow the Builder to achieve this without changing the audio currently playing? (Choose two.)

A.
REPLACE_ALL
A.
REPLACE_ALL
Answers
B.
CLEAR_ENQUEUED
B.
CLEAR_ENQUEUED
Answers
C.
REPLACE_ENQUEUED
C.
REPLACE_ENQUEUED
Answers
D.
ENQUEUE
D.
ENQUEUE
Answers
E.
CLEAR_ALL
E.
CLEAR_ALL
Answers
Suggested answer: C, D

Explanation:

Reference: https://developer.amazon.com/en-US/docs/alexa/alexa-voice-service/audioplayer.html

An Alexa Skill Builder is designing a skill with an intent that needs six slots to be filled. It is unlikely that a user will provide all the slot values in a single utterance, so the slot fulfillment should be split up into a multi-turn conversation.

What can the Builder do in the developer console to have Amazon Alexa elicit any missing slots, without specifying each of the slots in the backend code?

A.
Keep track of what slots are filled in session attributes, and in the backend code, prompt the user for the missing slots using Dialog.ElicitSlot.
A.
Keep track of what slots are filled in session attributes, and in the backend code, prompt the user for the missing slots using Dialog.ElicitSlot.
Answers
B.
Mark those six slots are required, fill in the necessary prompts, and in the backend code, use the Dialog.Delegate directive until all slots are filled.
B.
Mark those six slots are required, fill in the necessary prompts, and in the backend code, use the Dialog.Delegate directive until all slots are filled.
Answers
C.
Mark those six slots are required, fill in the necessary prompts, and in the backend code, use the Dialog.ConfirmSlot directive until all slots are filled
C.
Mark those six slots are required, fill in the necessary prompts, and in the backend code, use the Dialog.ConfirmSlot directive until all slots are filled
Answers
D.
Mark those six slots are required, fill in the necessary prompts, and in the backend code, use the Dialog.ElicitSlot directive until all slots are filled.
D.
Mark those six slots are required, fill in the necessary prompts, and in the backend code, use the Dialog.ElicitSlot directive until all slots are filled.
Answers
Suggested answer: B

Explanation:

Reference: https://developer.amazon.com/en-US/docs/alexa/custom-skills/create-the-interaction-model-for-your-skill.html

An Alexa Builder is working on a skill for music streaming. When a user says, "Alexa, stop" the skill needs to know where the user was in the song, so that when returning to the skill in a new session, the song can pick up where it left off.

Which section of the following JSON contains the data indicating where the song left off?

A.
session.attributes
A.
session.attributes
Answers
B.
Context.AudioPlayer
B.
Context.AudioPlayer
Answers
C.
session.user
C.
session.user
Answers
D.
context.System.device.supportedInterfaces.AudioPlayer
D.
context.System.device.supportedInterfaces.AudioPlayer
Answers
Suggested answer: C

An Alexa Skill Builder implemented the built-in intent AMAZON.HelpIntent. In some cases, users are asking for help using phrases that are specific to a skill’s terminology. Amazon Alexa does not understand these phrases are help requests, and they are not being routed to AMAZON.HelpIntent.

According to best practices, how can this situation be corrected?

A.
Create custom intents using the help utterances that are specific to the skill, and remove AMAZON.HelpIntent.
A.
Create custom intents using the help utterances that are specific to the skill, and remove AMAZON.HelpIntent.
Answers
B.
Use AMAZON.FallbackIntent to capture spoken phrases that do not match AMAZON.HelpIntent, then determine if the user needs help.
B.
Use AMAZON.FallbackIntent to capture spoken phrases that do not match AMAZON.HelpIntent, then determine if the user needs help.
Answers
C.
Define custom slots for AMAZON.HelpIntent to capture the additional details in the users’ help requests
C.
Define custom slots for AMAZON.HelpIntent to capture the additional details in the users’ help requests
Answers
D.
Extend the standard built-in AMAZON.HelpIntent using additional samples in the skill’s interaction model
D.
Extend the standard built-in AMAZON.HelpIntent using additional samples in the skill’s interaction model
Answers
Suggested answer: D
Total 65 questions
Go to page: of 7