Alexa Skill Builder Specialty

The Alexa Skill Builder Specialty were last updated on today.
  • Viewing page 1 out of 11 pages.
  • Viewing questions 1-5 out of 55 questions
Disclaimers:
  • - ExamTopics website is not related to, affiliated with, endorsed or authorized by Amazon.and Azure
  • - Trademarks, certification & product names are used for reference only and belong to Amazon.and Azure

Topic 1 - Exam A

Question #1 Topic 1

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?

  • A Store and increment a launchCount session attribute.
  • B Using the ASK SDK, implement a persistent attribute that is stored and retrieved from Amazon DynamoDB.
  • C Perform a scan of the Amazon DynamoDB table for the number of records and count each record as a skill launch.
  • D Set up a global variable in the code project that increments each time the code is invoked by Amazon Alexa.
Suggested Answer: B
NOTE: The builder should use the ASK SDK to implement a persistent attribute stored and retrieved from Amazon DynamoDB. This approach provides a reliable way to track the number of times the skill has been launched, as the data is stored in a durable and scalable database.
Question #2 Topic 1

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?

  • A AMAZON.NextIntent and AMAZON.StopIntent
  • B AMAZON.ResumeIntent and AMAZON.PauseIntent
  • C AMAZON.CancelIntent and AMAZON.ResumeIntent
  • D AMAZON.RepeatIntent and AMAZON.StopIntent
Suggested Answer: B
NOTE: The two built-in intents required to implement the AudioPlayer interface are AMAZON.ResumeIntent and AMAZON.PauseIntent. These intents allow the user to pause and resume the audio stream.
Question #3 Topic 1

An Alexa Skill Builder is creating a skill that requires the user to authenticate by speaking a PIN before an order status can be retrieved. According to best practices, how should the PIN value be collected?

  • A Use AMAZON.SearchQuery
  • B Use AMAZON.FOUR_DIGIT_NUMBER
  • C Use multiple slots of type AMAZON.NUMBER
  • D Use a custom slot with zero to nine as values.
Suggested Answer: B
NOTE: The best way to collect a PIN value is by using the AMAZON.FOUR_DIGIT_NUMBER slot type. This slot type ensures that the user will only input a valid four-digit number, which is the format typically used for PINs.
Question #4 Topic 1

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

  • A AMAZON.NextIntent
  • B AMAZON.MoreIntent
  • C AMAZON.ScrollDownIntent
  • D AMAZON.PreviousIntent
  • E AMAZON.StartOverIntent
  • F AMAZON.NavigateHomeIntent
Suggested Answer: BCF
NOTE: The standard built-in intents that are handled by Alexa on the skill's behalf and not forwarded to the skill on Amazon Alexa enabled devices with a screen are AMAZON.MoreIntent, AMAZON.ScrollDownIntent, and AMAZON.NavigateHomeIntent.
Question #5 Topic 1

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 page Given this information, why will the skill fail certification?

  • A The Builder did not upload a privacy policy document
  • B Child-directed skills cannot use location information
  • C The child's userId cannot be used because of Personally Identifiable Information (PII) restrictions.
  • D The skill should not be child-directed as it can be used by children over 13 years old.
Suggested Answer: C
NOTE: The skill will fail certification because the child's userId cannot be used due to Personally Identifiable Information (PII) restrictions.