AWS Certified Alexa Skill Builder - Specialty

Here you have the best Amazon AXS-C01 practice exam questions

  • You have 58 total questions to study from
  • Each page has 5 questions, making a total of 12 pages
  • You can navigate through the pages using the buttons at the bottom
  • This questions were last updated on November 17, 2024
Question 1 of 58

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

    Correct Answer: A, B, D

    Users can interact with an Amazon Alexa skill using both voice and non-voice methods in several ways. Scrolling through a list can be done via voice commands (e.g., 'next page') as well as by using touch on a compatible device. Selecting an action is also achievable by voice (e.g., 'select option 2') and touch input. Pausing a video can be controlled by voice commands (e.g., 'pause video') and through physical interactions on the device's screen or remote control.

Question 2 of 58

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?

    Correct Answer: B

    To accurately track the number of times users launch the skill, the Builder should use persistent attributes that are stored and retrieved from Amazon DynamoDB. This approach ensures that the launch count is maintained across sessions and device reboots. Session attributes are only temporary and reset after each session, while a global variable would not persist state across different invocations. Performing a scan of the DynamoDB table and counting records would not be efficient or accurate for tracking individual user sessions.

Question 3 of 58

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

    Correct Answer: B, C, F

    On Amazon Alexa enabled devices with a screen, certain built-in intents are handled directly by Alexa and not forwarded to the skill. These include intents used for navigation and displaying more content, such as AMAZON.MoreIntent, AMAZON.ScrollDownIntent, and AMAZON.NavigateHomeIntent. These intents are specifically designed to enhance the user interface experience on devices with screens.

Question 4 of 58

An Alexa Skill Builder needs to set up an Amazon Alexa skill beta test.

What user identifier should be used to add beta testers?

    Correct Answer: B

    To set up an Amazon Alexa skill beta test, the user identifier that should be used to add beta testers is the Alexa user email address. This helps in identifying and inviting specific users to participate in the beta testing phase of the skill development.

Question 5 of 58

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?

    Correct Answer: B

    To implement the AudioPlayer interface in a custom Alexa skill, the two essential built-in intents are AMAZON.ResumeIntent and AMAZON.PauseIntent. These intents are necessary because they handle the ability to pause and resume audio playback, which are fundamental controls for any audio streaming capability.