Labour Day Special - 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: c4sdisc65

AXS-C01 PDF

$38.5

$109.99

3 Months Free Update

  • Printable Format
  • Value of Money
  • 100% Pass Assurance
  • Verified Answers
  • Researched by Industry Experts
  • Based on Real Exams Scenarios
  • 100% Real Questions

AXS-C01 PDF + Testing Engine

$61.6

$175.99

3 Months Free Update

  • Exam Name: AWS Certified Alexa Skill Builder-Specialty
  • Last Update: May 18, 2024
  • Questions and Answers: 65
  • Free Real Questions Demo
  • Recommended by Industry Experts
  • Best Economical Package
  • Immediate Access

AXS-C01 Engine

$46.2

$131.99

3 Months Free Update

  • Best Testing Engine
  • One Click installation
  • Recommended by Teachers
  • Easy to use
  • 3 Modes of Learning
  • State of Art Technology
  • 100% Real Questions included

AXS-C01 Practice Exam Questions with Answers AWS Certified Alexa Skill Builder-Specialty Certification

Question # 6

Which of the following occur when a beta test of a live skill times out? (Choose two.)

A.

The beta tester will lose access to the beta skill and will need to reenable the live skill

B.

The beta tester will receive an email saying the beta test has ended

C.

The administrator will receive an email confirming that the beta tester has been removed

D.

The beta tester will lose access to the beta skill but will maintain access to the live skill

E.

The beta skill history in the Amazon Alexa app will disappear once the beta test has ended

Full Access
Question # 7

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.

Full Access
Question # 8

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

Full Access
Question # 9

AMAZON.MoreIntentis 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

Full Access
Question # 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

Full Access
Question # 11

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

Full Access
Question # 12

An Alexa Skill Builder receives feedback from users that a specific utterance causes Amazon Alexa to trigger the skill’sAMAZON.HelpIntentrather than triggering the correct intent and slot.

How can the Builder reproduce this behavior to troubleshoot the problem?

A.

Use the AWS Lambda test feature to send a request with the given intent and slot combination.

B.

Set up a unit test in the code base to simulate what happens when the given intent and slot combination

are dispatched within the skill.

C.

Use the Manual JSON tab on the Test page of the developer console to see what happens when a request

for the given intent and slot combination is sent to the skill

D.

Use the Alexa Simulator tab on the Test page of the developer console to test the utterances the users

have reported.

Full Access
Question # 13

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?

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.

Full Access
Question # 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?

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

Full Access
Question # 15

Thenamespacevalue 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

Full Access
Question # 16

A skill contains aPlanMyTripintent configured to require slotsfromCityandtoCity. It contains the

following interaction:

Alexa: What city are you leaving from?

User: I’m leaving from Seattle.

Alexa: You want to fly out of Seattle Tacoma International Airport, right?

User: Yes

Which of the following should the Builder use to confirm the value of thefromCityslot only? (Choose two.)

A.

Use theDialog.ConfirmSlotdirective, including the full airport name in theoutputSpeechobject.

B.

Use theDialog.ConfirmIntentdirective, including the full airport name in theupdatedIntent

object.

C.

Use theDialog.Delegatedirective, including the full airport name in theupdatedIntentobject.

D.

Use theDialog.Delegatedirective, including the full airport name in theoutputSpeechobject.

E.

Use theDialog.ElicitSlotdirective, including the full airport name in theupdatedIntentobject.

Full Access
Question # 17

An Alexa Skill Builder implemented the built-in intentAMAZON.HelpIntent. In some cases, users are asking

for help using phrases that are specific to a skill’s terminology. Amazon Alexa does not understand these

phrases are help requests, and they are not being routed toAMAZON.HelpIntent.

According to best practices, how can this situation be corrected?

A.

Create custom intents using the help utterances that are specific to the skill, and remove

AMAZON.HelpIntent.

B.

UseAMAZON.FallbackIntentto capture spoken phrases that do not matchAMAZON.HelpIntent,

then determine if the user needs help.

C.

Define custom slots forAMAZON.HelpIntentto capture the additional details in the users’ help requests

D.

Extend the standard built-inAMAZON.HelpIntentusing additional samples in the skill’s interaction model

Full Access
Question # 18

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?

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.

Full Access
Question # 19

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

AXS-C01 question answer

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

A.

sessionId

B.

userId

C.

requestId

D.

applicationId

Full Access