Alexa Skill Builder Specialty

The Alexa Skill Builder Specialty were last updated on today.
  • Viewing page 10 out of 11 pages.
  • Viewing questions 46-50 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 #46 Topic 1

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
Suggested Answer: C
NOTE: The skill does not have an invocation name. The invocation name is the name that users will use to invoke the skill.
Question #47 Topic 1

An Alexa Skill Builder is using the AudioPlayer.Play directive and would like to automatically start the next audio track at the end of the current track. Which AudioPlayer playBehavior values will allow the Builder to achieve this without changing the audio currently playing? (Choose two.)

  • A REPLACE_ALL
  • B CLEAR_ENQUEUED
  • C REPLACE_ENQUEUED
  • D ENQUEUE
  • E CLEAR_ALL
Suggested Answer: CD
NOTE: The AudioPlayer playBehavior values that will allow the Builder to automatically start the next audio track at the end of the current track without changing the audio currently playing are REPLACE_ENQUEUED and ENQUEUE. These playBehavior values will add the next audio track to the queue without interrupting or replacing the current track.
Question #48 Topic 1

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?

  • A Use the Alexa Simulator tab in the developer console to interact with the skill using the selected locale.
  • B Create a developer account for the specific locale, and use a device to interact with the skill.
  • C Use Voice & Tone tab in the developer console to play the statement using the selected locale.
  • D Use the Manual JSON tab in the developer console to create a sample JSON response
Suggested Answer: A
NOTE: The Builder should use the Alexa Simulator tab in the developer console to interact with the skill using the selected locale. This allows them to simulate how Amazon Alexa would pronounce the statement in another locale.
Question #49 Topic 1

An Alexa Skill Builder built a skill using AWS Lambda. The Lambda function works when running the code on a local machine with a runtime of 4.5 seconds, but during skill testing, the Builder receives an error response. Which collection of steps will address the issue? (Choose two.)

  • A Change the Amazon Alexa default timeout to 5 seconds.
  • B Change the default timeout of the Lambda function to 5 seconds.
  • C Call the Progressive Response API and send a directive to reduce latency.
  • D Increase the size of the memory allocated to the Lambda function.
  • E Clone the Lambda function to another AWS Region.
Suggested Answer: BD
NOTE: The error response is likely due to the Lambda function timing out. By increasing the default timeout of the Lambda function and increasing the memory allocated to the function, it can handle the code execution within the given time limit.
Question #50 Topic 1

An Alexa Skill Builder is building an interactive storytelling skill where the user can choose their own path through the story. The Builder wants Amazon Alexa to narrate the story and use custom audio for the dialogue for each character, along with various sound effects. How can these requirements be met?

  • A Record custom audio for each segment of the story, then stream audio files stored on Amazon S3 using the AudioPlayer interface for each segment of the story.
  • B Develop each response as text, and let Alexa speak each part differently using SSML markup for <amazon:effect> to alter the Alexa voice for each character.
  • C Record custom audio for each character voice and the sound effects in the story, then include the custom audio using SSML markup in the response.
  • D Record the entire story as custom audio and stream the audio stored on Amazon S3 using the AudioPlayer interface.
Suggested Answer: C
NOTE: The Builder can record custom audio for each character voice and sound effects and include them in the response using SSML markup. This will allow Alexa to use the custom audio for the dialogue and sound effects.