Certbus > Amazon > AWS Certified Specialty > AXS-C01 > AXS-C01 Online Practice Questions and Answers

AXS-C01 Online Practice Questions and Answers

Questions 4

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.

Browse 65 Q&As
Questions 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

Browse 65 Q&As
Questions 6

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

B. AMAZON.ResumeIntent and AMAZON.PauseIntent

C. AMAZON.CancelIntent and AMAZON.ResumeIntent

D. AMAZON.RepeatIntent and AMAZON.StopIntent

Browse 65 Q&As
Questions 7

An Alexa Skill Builder is using session attributes to maintain a user's state.

What can the Builder do to ensure that a user's session is not lost if they take too long to answer a question and the skill exists?

A. Set shouldEndSession to false in the response object to prevent the skill from exiting.

B. Handle the SessionEndedRequest request type and persist the user's session to a database.

C. Return false from the SessionEndedRequest handler so the session does not exist.

D. Return a reprompt in the response object from the SessionEndedRequest handler.

Browse 65 Q&As
Questions 8

An Alexa Skill Builder built a skill with the following interaction model: Which utterance would invoke HelloIntent?

A. "Alexa, use my first skill to say hello."

B. "Alexa, ask my first skill to say hello to John."

C. "Alexa, open my first skill."

D. "Alexa, say hello to my first skill."

Browse 65 Q&As
Questions 9

A travel booking skill has slot elicitation for fromCity, toCity, and travelDate inside of a dialog. After going live, the skill is getting negative reviews stating that the skill does not understand the city names when customers try to book travel.

The Alexa Skill Builder adds AMAZON.FallbackIntent to the interaction model with the goal of providing better messaging for out-of-domain utterances.

Why will the addition of AMAZON.FallbackIntent fail to resolve the customer issue?

A. AMAZON.FallbackIntent will not be triggered in the middle of a dialog.

B. A handler cannot be added to a Live skill.

C. AMAZON.FallbackIntent will cause the slot values to be incorrectly mapped.

D. AMAZON.FallbackIntent cannot be present in a skill with a Dialog directive.

Browse 65 Q&As
Questions 10

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

B. OAuth 2.0 with authorization code grant flow

C. OpenID Connect wit JSON.Web Token (JWT)

D. OAuth 1.0/2.0 with implicit grant flow

Browse 65 Q&As
Questions 11

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.

B. Change the default timeout of the Lambda function to 5 seconds.

C. Call the Progressive Response API and send a directive to reduce latency.

D. Increase the size of the memory allocated to the Lambda function.

E. Clone the Lambda function to another AWS Region.

Browse 65 Q&As
Questions 12

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

A. AMAZON.ResumeIntent

B. AMAZON.ScrollDownIntent

C. AMAZON.RepeatIntent

D. AMAZON.ScrollRightIntent

E. AMAZON.LoopOnIntent

Browse 65 Q&As
Questions 13

An Alexa Skill Builder is interested in gathering information about returning users.

What analytics tool in the developer console would provide the Builder with this information?

A. Customers

B. Interaction Path

C. Sessions

D. Retention

Browse 65 Q&As
Questions 14

An Amazon Alexa Skill with account linking receives the following request from Alexa: Before responding to the request, how should the Alexa Skill Builder verify that the request came from a user with a valid service account?

A. Confirm that apiAccessToken verifies that the user is in the resource server and that the token has not expired.

B. Confirm that accessToken verifies that the token has not expired and that the user is the resource owner.

C. Confirm that accessToken verifies that the user is in the resource server and that the token has not expired.

D. Confirm that apiAccessToken verifies that the token has not expired and that the user is the resource owner.

Browse 65 Q&As
Questions 15

An Alexa Skill Builder wants to add a short audio clip to a skill with SSML. The Builder records a 6-second audio clip using a high-end microphone and recording application and exports the file with a bitrate of 48 kbps. The file is then uploaded to a public Amazon S3 bucket.

The Builder then updates the SSML to return:

When testing the skill, Amazon Alexa responds with "There was a problem with the requested skill's response" every time.

How should the Builder resolve this error?

A. Record a shorter audio clip.

B. Re-export the audio file with a smaller bitrate.

C. Re-export the audio file to .mp3 instead of .wav

D. Update the interaction model to enable the AudioPlayer interface

Browse 65 Q&As
Questions 16

During testing of a new Amazon Alexa skill, the skill is repeatedly failing and invoking the function defined in the addErrorHandler method specified on the SkillBuilder object. Upon inspection of Amazon CloudWatch Logs, the Alexa Skill Builder establishes that the failure is occurring whenever AMAZON.HelpIntent is being received.

How should this error be corrected?

A. AMAZON.HelpIntent should be handled by the SDK. The Builder should raise a support ticket with Amazon.

B. The Builder should ensure that the intent handler is coded so that it tests for AMAZON.HelpIntent in its canHandle method, and when detected, returns true.

C. The Builder should add logic to provide help instructions to the function defined in the addErrorHandler method specified on the SkillBuilder object.

D. The Builder should add an AMAZON.HelpIntent entry to the interaction model to ensure the request for help is recognized by the skill.

Browse 65 Q&As
Questions 17

An Alexa Skill Builder wants to implement in-skill purchasing to offer one-time purchases for access to premium content. The Builder created an entitlement product and deployed it successfully using the ASK CLI tool. When testing the custom BuyInskillProductIntent in the developer console, the Builder receives the following error:

Sorry, this product is not available with your current language setting.

How can this error be fixed?

A. Change the release date and redeploy the product

B. Change the locale in the Alexa Simulator tab in the developer console

C. Change the AWS Lambda function to include the correct locale in the Connections.SendRequest

directive

D. Change the language in the premium content

Browse 65 Q&As
Questions 18

The information below details a portion of an interaction model in JSON: What is wrong with this interaction model?

A. The intent naming convention is not valid in the situation.

B. The two intents do not have unique slots.

C. The two intents do not have unique utterances.

D. The JSON is not properly constructed and would cause an error.

Browse 65 Q&As
Exam Code: AXS-C01
Exam Name: AWS Certified Alexa Skill Builder - Specialty (AXS-C01)
Last Update: Mar 24, 2024
Questions: 65 Q&As

PDF

$45.99

VCE

$49.99

PDF + VCE

$59.99