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

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

Page: 1 / 2
Total 65 questions

An Alexa Skill Builder is building an order reporting skill. Occasionally, users need to enter 30-digit serial

codes.

How can this be accomplished while providing a good voice user interface experience?

A.

Manually extend the timeout so that users can input all the numbers.

B.

Use multiple requests for smaller segments of the code and store the data in session attributes.

C.

Enter single digits one request at a time.

D.

Request that users send the number using the Amazon Alexa app

An Alexa Skill Builder is creating a skill that will identify an actor who spoke a famous piece of movie dialog, given just the dialog text and an optional movie name. The Builder created theFindActorIntentas shown below, but Amazon Alexa returns an error when it builds the model.

Why is Alexa failing to build the model?

A.

Intents can have one built-in slot type only

B.

All sample utterances within an intent should have both slots

C.

SearchQueryis combined with another intent slot in an utterance.

D.

“Dialog”is a reserved keyword in the Alexa Interaction Model schemA.

An Amazon Alexa trip planner skill has several intents and slots. One of the intents isPlanMyTripIntent

and some of the slots arefromCity,toCity,departDate, andreturnDate. The following is a sample

dialog:

User: Ask plan my trip to start a new trip leaving from Seattle.

Alexa: You said you are leaving from Seattle, right?

User: Yes

Alexa: I’ve saved your trip. Do you want to create another trip?

User: Yes

What will be invoked upon the user’s final “Yes”?

A.

PlanMyTripIntent

B.

AMAZON.CancelIntent

C.

AMAZON.YesIntent

D.

LaunchRequest

An Alexa Skill Builder wants to customize a welcome back message for each person who uses the skill. The JSON input is shown below:

Which element from the request would the Builder use to accomplish this?

A.

sessionId

B.

userId

C.

requestId

D.

applicationId

An Alexa Skill Builder needs to display an image and some additional text to users of a skill.

Which approach will work with any Amazon Alexa enabled device?

A.

Use an Alexa display template, such asBodyTemplate1.

B.

Send aSimplecard to the user.

C.

Send aStandardcard to the user.

D.

Send aLinkAccountcard to the user.

An Alexa Skill Builder needs to have knowledge of the previous prompt that was presented to the user in order

to give context to the user’s response.

How can the Builder accomplish this?

A.

Find the corresponding prompt using the list events feature

B.

Store a reference to the prompt used as a session attribute

C.

Call the Intent Request History API to identify which prompt was used.

D.

Parse thecontextobject from the skill request.

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 thatapiAccessTokenverifies that the user is in the resource server and that the token has not expired.

B.

Confirm thataccessTokenverifies that the token has not expired and that the user is the resource owner.

C.

Confirm thataccessTokenverifies that the user is in the resource server and that the token has not expired.

D.

Confirm thatapiAccessTokenverifies that the token has not expired and that the user is the resource owner.

An Alexa Skill Builder wants to name a skill using a company’s branded acronym, “NAT Systems.”

Which invocation name is valid?

A.

n a t systems

B.

n-a-t systems

C.

n. A. t. systems

D.

NAT Systems

An Alexa Skill Builder is developing a complex skill to help users purchase items. The Builder has implemented the defaultAMAZON.HelpIntent, but when users ask for help they always reach the same unhelpful result.

How should the Builder enhance the experience to guide the users toward the end goal?

A.

Check the state of the user conversation whenAMAZON.HelpIntentis received to give contextual responses.

B.

ImplementAMAZON.FallbackIntentto give a response when an utterance is not understood.

C.

Extend the defaultAMAZON.HelpIntentwith more sample utterances.

D.

Implement a custom intent users can request when they need help.

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.

Which of the following actions will resolve the problem?

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.