Spring Sale Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: pass65

AXS-C01 AWS Certified Alexa Skill Builder-Specialty Questions and Answers

Questions 4

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

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 NO: the

answer refers to?

Options:

A.

Using session attributes, store the previous QUESTION NO: as the context for use in theAMAZON.YesIntent

handler.

B.

Within theAMAZON.YesIntenthandler, prompt the user to repeat the name of the animal that they like.

C.

Within theAMAZON.YesIntenthandler, define a slot to store and retrieve the previously asked QUESTION NO:.

D.

Access Amazon CloudWatch Logs and retrieve the previous QUESTION NO: topic from the recent log messages.

Buy Now
Questions 5

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?

Options:

A.

AMAZON.NextIntentandAMAZON.StopIntent

B.

AMAZON.ResumeIntentandAMAZON.PauseIntent

C.

AMAZON.CancelIntentandAMAZON.ResumeIntent

D.

AMAZON.RepeatIntentandAMAZON.StopIntent

Buy Now
Questions 6

According to Amazon Alexa best practices, how should an Alexa Skill Builder prevent unintentional requests

against a skill’s backend when using AWS Lambda?

Options:

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.

Buy Now
Questions 7

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?

Options:

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

Buy Now
Questions 8

While developing a skill, an Alexa Skill Builder finds that the voice response is too quick and needs to be slowed down.

How can the Builder MOST efficiently iterate and test how the response will sound?

Options:

A.

Make changes in the skill code, deploy it, and test it on the device.

B.

Modify the SSML in the skill, save it, and check Amazon CloudWatch for errors.

C.

Edit the SSML in the skill and use the Alexa Simulator tab on the Test page of the developer console.

D.

Use the Voice & Tone tab on the Test page in the developer console.

Buy Now
Questions 9

An Alexa Skill Builder is developing a skill using AWS Lambda. When invoking the skill, Amazon Alexa responds “There was a problem with the requested skill’s response.”

The following message is displayed in Amazon CloudWatch Logs for the Lambda function.

AXS-C01 Question 9

Which of the following actions will resolve the problem?

Options:

A.

Define a new intent namedUnhandledin the skill interaction model and add anUnhandledintent

handler to the Lambda function.

B.

Add an .addErrorHandlers()attribute to theSkillBuilderobject and define a

function to display detailed information about the error, then respond verbally to the user.

C.

Add an intent handler for theSessionEndedRequestintent to the Lambda function to display detailed

information about the error.

D.

Add additional logic to theAMAZON.StopIntenthandler in the Lambda function to display detailed

information about the error.

Buy Now
Questions 10

An Alexa Skill Builder built a skill with the following interaction model:

An Alexa Skill Builder built a skill with the following interaction model:

AXS-C01 Question 10

Which utterance would invokeHelloIntent?

Which utterance would invokeHelloIntent?

Options:

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

Buy Now
Questions 11

An Alexa Skill Builder is developing a skill that must send an initial welcome email to each new user.

What combination of features would the Builder use to satisfy this requirement? (Choose two.)

Options:

A.

Alexa Settings API

B.

Entity resolution

C.

Customer Profile API

D.

Device Address API

E.

Data persistence

Buy Now
Questions 12

A travel booking skill has slot elicitation forfromCity,toCity, andtravelDateinside 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 addsAMAZON.FallbackIntentto the interaction model with the goal of providing better messaging for out-of-domain utterances.

Why will the addition ofAMAZON.FallbackIntentfail to resolve the customer issue?

Options:

A.

AMAZON.FallbackIntentwill not be triggered in the middle of a dialog.

B.

A handler cannot be added to a Live skill.

C.

AMAZON.FallbackIntentwill cause the slot values to be incorrectly mapped.

D.

AMAZON.FallbackIntentcannot be present in a skill with aDialogdirective.

Buy Now
Questions 13

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?

Options:

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.

B.

The ASK SDK was not deployed with the Lambda function. Add the ASK SDK, then redeploy the Lambda

function.

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.

D.

The Lambda role does not have the correct AWS IAM permission. Update the IAM role associated with the

Lambda function.

Buy Now
Questions 14

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 customBuyInskillProductIntentin 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?

Options:

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 theConnections.SendRequest

directive

D.

Change the language in the premium content

Buy Now
Questions 15

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?

Options:

A.

Keep track of what slots are filled in session attributes, and in the backend code, prompt the user for the

missing slots usingDialog.ElicitSlot.

B.

Mark those six slots are required, fill in the necessary prompts, and in the backend code, use the

Dialog.Delegatedirective 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.ConfirmSlotdirective 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.ElicitSlotdirective until all slots are filled.

Buy Now
Questions 16

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?

Options:

A.

Customers

B.

Interaction Path

C.

Sessions

D.

Retention

Buy Now
Questions 17

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

Options:

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.

Buy Now
Questions 18

An Alexa Skill Builder made changes to an AWS Lambda function that is used as the endpoint for a skill. The

Builder discovers that the skill now returns an error when it is launched.

How can the Builder use the Lambda console to trigger the function and debug the code?

Options:

A.

Create a Lambda test event using the JSON request as input to find the specific error within the code.

B.

Create a Lambda test event using the JSON response as output to find the specific error within the code.

C.

Check the JSON response to see if there are any syntax errors in the code.

D.

Create a Lambda test event using the JSON interaction model to find the specific error within the code.

Buy Now
Questions 19

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?

Options:

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

Buy Now
Exam Code: AXS-C01
Exam Name: AWS Certified Alexa Skill Builder-Specialty
Last Update: Feb 24, 2026
Questions: 65

PDF + Testing Engine

$63.52  $181.49

Testing Engine

$50.57  $144.49
buy now AXS-C01 testing engine

PDF (Q&A)

$43.57  $124.49
buy now AXS-C01 pdf