Updated AXS-C01 Dumps Exam Materials For AWS Certified Alexa Skill Builder – Specialty Exam

To better help you pass the AWS Certified Alexa Skill Builder – Specialty exam, PassITDump has updated the AWS Certified Specialty AXS-C01 dumps exam materials, PDF, and VCE mode for you to learn (65 real practice questions and answers), ensuring that come from the real Amazon AXS-C01 exam and are valid.

If you need to check sample questions of the AXS-C01 free dumps, here.

Question 1:

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.

B. Using the ASK SDK, implement a persistent attribute that is stored and retrieved from Amazon DynamoDB.

C. Perform a scan of the Amazon DynamoDB table for the number of records and count each record as a skill launch.

D. Set up a global variable in the code project that increments each time the code is invoked by Amazon Alexa.

Correct Answer: B

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


Question 2:

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.

B. The AWS Lambda function is not registered to the skill.

C. The users have opted out of giving their location information.

D. The application ID of the skill does not match the expected application ID of the AWS Lambda function.

E. The skill is not registered to access information in the developer console.

Correct Answer: CD


Question 3:

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

B. AMAZON.MoreIntent

C. AMAZON.ScrollDownIntent

D. AMAZON.PreviousIntent

E. AMAZON.StartOverIntent

F. AMAZON.NavigateHomeIntent

Correct Answer: CEF

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


Question 4:

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.

B. Within the AMAZON.YesIntent handler, prompt the user to repeat the name of the animal that they like.

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.

Correct Answer: C

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


Question 5:

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

B. Alexa user email address

C. Amazon vendor ID

D. Amazon customer ID

Correct Answer: B

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


Question 6:

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.

B. The skill does not have an example phrase

C. The skill does not have an invocation name

D. The skill does not have an endpoint

Correct Answer: C

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


Question 7:

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.

B. Access the In Development version of the skill, alter the intent that was causing the incorrect word, then resubmit the skill for certification.

C. Edit the response in a new endpoint, and after updating the In Development version of the skill, resubmit it for certification.

D. Correct the response in the existing endpoint of the Live version of the skill, then redeploy it.

Correct Answer: A


Question 8:

An Amazon Alexa interactive story skill needs to provide users with the option to resume the skill from where users left off when they last used the skill. Where should the data be stored to ensure that the skill will start at the correct location?

A. In a JSON file along with the skill\’s AWS Lambda function

B. In Amazon DynamoDB

C. In the skill\’s session object

D. In the skills\’s request object

Correct Answer: C

Reference: https://developer.amazon.com/en-US/docs/alexa/in-skill-purchase/add-isps-to-a-skill.html


Question 9:

An Alexa Skill Builder is developing a custom skill and needs to verify that the correct slot values are being passed into the AWS Lambda function. According to best practices, what is the MOST efficient way to capture this information?

A. Add a logging statement to write the event request to Amazon CloudWatch Logs.

B. Add an API call to write the environment variables to an Amazon S3 bucket when the function is invoked.

C. Add an API call to read the event information from AWS Cloud Trail logs and add a PutObject API call to write to an Amazon S3 bucket.

D. Add a statement to parse the JSON request and save to the local disk for the Lambda function

Correct Answer: D

Reference: https://developer.amazon.com/en-US/docs/alexa/custom-skills/validate-slot-values.html


Question 10:

The namespace value in the header of the incoming directive for an Amazon Alexa smart home skill specifies the:

A. context of the message

B. capability interface of the message

C. endpoint specified in the message

D. control message for the directive

Correct Answer: D

Reference: https://developer.amazon.com/en-US/docs/alexa/device-apis/alexa-errorresponse.html


Question 11:

According to Amazon Alexa best practices, how should an Alexa Skill Builder prevent unintentional requests against a skill\’s backend when using AWS Lambda?

A. Ensure that the session ID provided by the request to Lambda is not already in use.

B. Rotate the Lambda ARN regularly to prevent others from using the service.

C. Retrieve the Application ID property from the request JSON and validate it against the Lambda environment variables.

D. Provide the Lambda trigger with the Application ID so that it validates on the ask trigger.

Correct Answer: C


Question 12:

An Alexa Skill Builder would like to improve a skill\’s help experience. To do this, the Builder plans to leverage the user\’s activity leading up to the help request to contextualize the help response. Where should the skill obtain the necessary context?

A. Load the user\’s recent activity from the Intent Request History API, then use this to provide context to the AMAZON.HelpIntent request.

B. Retrieve the recent activity from the context object passed with the AMAZON.HelpIntent request.

C. Use a session attribute to store the intent name for each request, then use this to provide context to the AMAZON.HelpIntent request.

D. Retrieve the recent activity from the slot values passed with the AMAZON.HelpIntent request.

Correct Answer: D

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


Question 13:

An Alexa Skill Builder adds a colleague to a skill using the beta test feature. The colleague logs in to the developer console to edit the interaction model and cannot see the skill. Why is this happening?

A. The colleague needs the ROLE_ADMINISTRATOR enablement.

B. The skill was not submitted for publishing.

C. The colleague was not made an administrator in the beta test tool.

D. The colleague has not been added to the skill\’s developer account.

Correct Answer: C

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


Question 14:

An Amazon Alexa skill fetches data for users from a third-party API and the wait for the response from that call is variable, often taking up to 5 seconds. What is the recommended method for notifying users that a skill is working on the request and has not failed to respond?

A. Prefetch the data that is expected to the required by the skill from the third-party API using Amazon CloudWatch Events.

B. Call the Progressive Response API and send a directive, such as VoicePlayer.Speak

C. Ask a follow-up question for clarification to engage the user while waiting for the initially requested response.

D. Respond to the user stating that the data will be ready soon, and upon the next launch of the skill, provide the user with the response they initially requested.

Correct Answer: B

Reference: https://developer.amazon.com/en-US/docs/alexa/custom-skills/send-the-user-a-progressive-response.html


Question 15:

An Alexa Skill Builder has created a custom skill about basketball including a HowToPlayBasketball intent. When looking at the Intent History page in the developer console, the Builder sees that a number of users are asking the skill how to play baseball. The Builder wants to add a relevant response directing the user back to the topic of basketball.

How should the Builder implement this?

A. Add AMAZON.FallbackIntent and respond with a message about baseball in the handler

B. Create a custom intent related to baseball, and when matched, provide a relevant response

C. Add more sample utterances related to baseball in the HowToPlayBasketball intent

D. Create a new custom baseball slot and add a slot-filling utterance to the HowToPlayBasketball intent.

Correct Answer: A

Reference: https://developer.amazon.com/blogs/alexa/post/c97f3bb7-9701-41e8-ac06-a3a44b9f1638/use-the-new-fallback-intent-to-respond-gracefully-to-unexpected-customer-requests