AXS-C01 : AWS Certified Alexa Skill Builder – Specialty : Part 01
-
Which of the following are ways that a user can interact with an Amazon Alexa skill using both voice and non-voice methods? (Choose three.)
- Scrolling through a list
- Selecting an action
- Zooming in on an image
- Pausing a video
- Muting the device
- Pairing with Bluetooth
-
An Alexa Skill Builder wants a skill to inform the users of the number of times they have launched the skill.
What approach should the Builder take to track this information?
- Store and increment a launchCount session attribute.
- Using the ASK SDK, implement a persistent attribute that is stored and retrieved from Amazon DynamoDB.
- Perform a scan of the Amazon DynamoDB table for the number of records and count each record as a skill launch.
- Set up a global variable in the code project that increments each time the code is invoked by Amazon Alexa.
-
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.)
- The Alexa devices are registered in the incorrect postal code.
- The AWS Lambda function is not registered to the skill.
- The users have opted out of giving their location information.
- The application ID of the skill does not match the expected application ID of the AWS Lambda function.
- The skill is not registered to access information in the developer console.
-
On Amazon Alexa enabled devices with a screen, which of the following standard built-in intents are handled by Alexa on the skill’s behalf and are not forwarded to the skill? (Choose three.)
-
AMAZON.NextIntent
-
AMAZON.MoreIntent
-
AMAZON.ScrollDownIntent
-
AMAZON.PreviousIntent
-
AMAZON.StartOverIntent
-
AMAZON.NavigateHomeIntent
-
-
An Alexa Skill Builder wants to create a skill that asks the user two yes/no questions:
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 the answer refers to?
- Using session attributes, store the previous question as the context for use in the AMAZON.YesIntent handler.
- Within the AMAZON.YesIntent handler, prompt the user to repeat the name of the animal that they like.
- Within the AMAZON.YesIntent handler, define a slot to store and retrieve the previously asked question.
- Access Amazon CloudWatch Logs and retrieve the previous question topic from the recent log messages.
-
An Alexa Skill Builder needs to set up an Amazon Alexa skill beta test.
What user identifier should be used to add beta testers?
- AWS account number
- Alexa user email address
- Amazon vendor ID
- Amazon customer ID
-
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?
-
AMAZON.NextIntent and AMAZON.StopIntent
-
AMAZON.ResumeIntent and AMAZON.PauseIntent
-
AMAZON.CancelIntent and AMAZON.ResumeIntent
-
AMAZON.RepeatIntent and AMAZON.StopIntent
-
-
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?
- The skill’s slot types are invalid.
- The skill does not have an example phrase
- The skill does not have an invocation name
- The skill does not have an endpoint
-
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?
- Correct the response in a new endpoint, and after updating the In Development version of the skill, redeploy it.
- Access the In Development version of the skill, alter the intent that was causing the incorrect word, then resubmit the skill for certification.
- Edit the response in a new endpoint, and after updating the In Development version of the skill, resubmit it for certification.
- Correct the response in the existing endpoint of the Live version of the skill, then redeploy it.
-
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?
- In Development
- Build
- In Certification
- Edit
-
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?
- Manually extend the timeout so that users can input all the numbers.
- Use multiple requests for smaller segments of the code and store the data in session attributes.
- Enter single digits one request at a time.
- Request that users send the number using the Amazon Alexa app
-
An Amazon Alexa interactive story skill needs to provide users with the option to resume the skill from where users left off when they last used the skill.
Where should the data be stored to ensure that the skill will start at the correct location?
- In a JSON file along with the skill’s AWS Lambda function
- In Amazon DynamoDB
- In the skill’s session object
- In the skills’s request object
-
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?
- Add a logging statement to write the event request to Amazon CloudWatch Logs.
- Add an API call to write the environment variables to an Amazon S3 bucket when the function is invoked.
- 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.
- Add a statement to parse the JSON request and save to the local disk for the Lambda function
-
Before beginning the development of a skill, an Alexa Skill Builder wants to hear how a statement will be pronounced by Amazon Alexa in another locale.
How should the Builder test the pronounciation of the statement?
- Use the Alexa Simulator tab in the developer console to interact with the skill using the selected locale.
- Create a developer account for the specific locale, and use a device to interact with the skill.
- Use Voice & Tone tab in the developer console to play the statement using the selected locale.
- Use the Manual JSON tab in the developer console to create a sample JSON response
-
An Alexa Skill Builder submitted a child-directed skill for certification that lists the nearest skateboard parks. The Builder ensured that
– The skill does not link to an external account
– The skill stored the child’s preference by userId
– The skill has a valid privacy policy link in the skill Distribution pageGiven this information, why will the skill fail certification?
- The Builder did not upload a privacy policy document
- Child-directed skills cannot use location information
- The child’s userId cannot be used because of Personally Identifiable Information (PII) restrictions.
- The skill should not be child-directed as it can be used by children over 13 years old.
-
The namespace value in the header of the incoming directive for an Amazon Alexa smart home skill specifies the:
- context of the message
- capability interface of the message
- endpoint specified in the message
- control message for the directive
-
According to Amazon Alexa best practices, how should an Alexa Skill Builder prevent unintentional requests against a skill’s backend when using AWS Lambda?
- Ensure that the session ID provided by the request to Lambda is not already in use.
- Rotate the Lambda ARN regularly to prevent others from using the service.
- Retrieve the Application ID property from the request JSON and validate it against the Lambda environment variables.
- Provide the Lambda trigger with the Application ID so that it validates on the ask trigger.
-
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?
- Load the user’s recent activity from the Intent Request History API, then use this to provide context to the AMAZON.HelpIntent request.
- Retrieve the recent activity from the context object passed with the AMAZON.HelpIntent request.
- Use a session attribute to store the intent name for each request, then use this to provide context to the AMAZON.HelpIntent request.
- Retrieve the recent activity from the slot values passed with the AMAZON.HelpIntent request.
-
An Alexa Skill Builder adds a colleague to a skill using the beta test feature. The colleague logs in to the developer console to edit the interaction model and cannot see the skill.
Why is this happening?
- The colleague needs the ROLE_ADMINISTRATOR enablement.
- The skill was not submitted for publishing.
- The colleague was not made an administrator in the beta test tool.
- The colleague has not been added to the skill’s developer account.
-
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?
- Define a new intent named Unhandled in the skill interaction model and add an Unhandled intent handler to the Lambda function.
- Add an .addErrorHandlers(<function>) attribute to the SkillBuilder object and define a function to display detailed information about the error, then respond verbally to the user.
- Add an intent handler for the SessionEndedRequest intent to the Lambda function to display detailed information about the error.
- Add additional logic to the AMAZON.StopIntent handler in the Lambda function to display detailed information about the error.
Subscribe
0 Comments
Newest