Weekend Sale Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: xmas50

Amazon Web Services AXS-C01 - AWS Certified Alexa Skill Builder-Specialty

Page: 2 / 2
Total 65 questions

An Alexa Skill Builder is developing a skill containing a multi-turn dialog that can be invoked with or without a

specific intent request. On invocation, the skill needs to retrieve persistent attributes that have been saved by

a previous invocation, and then copy them into session attributes.

How should the Builder implement this functionality?

A.

Place logic within the skill’sSessionEndedRequestintent handler to copy the persistent attributes into

the session attributes.

B.

ImplementResponseInterceptorcontaining logic that takes the current persistent attributes and

copies them into session attributes.

C.

Include logic within theLaunchRequestintent handler to retrieve persistent attributes and copy them into

session attributes.

D.

ImplementRequestInterceptorcontaining logic which for new sessions, retrieves persistent attributes

and copies them into session attributes

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.

An Alexa Skill Builder is troubleshooting issues with a custom skill backed by an AWS Lambda function that

integrates with an external API controlling a light bulb. The Builder observes that when saying “Alexa, turn on

the light” the response is “light is not responding” and 10 seconds later, the light turns on.

What is the MOST likely cause for this issue and how can it be solved?

A.

The Lambda function is not executing fast enough. Double the currently specified Lambda memory

allocation in the Lambda basic settings section.

B.

The default Lambda function timeout setting is too short and the Lambda function times out before the

response from the external API can be processed and a reply can be sent back to Amazon AlexA. Increase

the Lambda timeout limit.

C.

There are too many concurrent Lambda functions running, causing the existing Lambda function to block

and then time out before a response can be returned to Amazon AlexA. Increase the Lambda function

reserve concurrency value to 30, then verify that the function can complete its work within 10 seconds.

D.

There is a bug in the Lambda function code preventing the external API from being called. Enable Lambda

debugging and error handling and check Amazon CloudWatch Logs for the error, then modify the code

accordingly.

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.

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.

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

B.

Retrieve the recent activity from thecontextobject passed with theAMAZON.HelpIntentrequest.

C.

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

AMAZON.HelpIntentrequest.

D.

Retrieve the recent activity from the slot values passed with theAMAZON.HelpIntentrequest.

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

B.

Build

C.

In Certification

D.

Edit

An Alexa Skill Builder published a skill and now wants to update it.

Which of the following changes will make it necessary to have the skill re-certified? (Choose two.)

A.

Adding a new intent in the interaction model

B.

Changing the text of a skill response

C.

Adding a sentence to the skill description

D.

Changing the URL of the image on a skill card

E.

Updating the backend to point to a new database

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.