Amazon AWS Certified Alexa Skill Builder - Specialty Exam Practice Questions (P. 4)
- Full Access (59 questions)
- Six months of Premium Access
- Access to one million comments
- Seamless ChatGPT Integration
- Ability to download PDF files
- Anki Flashcard files for revision
- No Captcha & No AdSense
- Advanced Exam Configuration
Question #16
An Amazon Alexa skill fetches data for users from a third-party API and the wait for the response from that call is variable, often taking up to 5 seconds.
What is the recommended method for notifying users that a skill is working on the request and has not failed to respond?
What is the recommended method for notifying users that a skill is working on the request and has not failed to respond?
- APrefetch the data that is expected to the required by the skill from the third-party API using Amazon CloudWatch Events.
- BCall the Progressive Response API and send a directive, such as VoicePlayer.Speak
- CAsk a follow-up question for clarification to engage the user while waiting for the initially requested response.
- DRespond to the user stating that the data will be ready soon, and upon the next launch of the skill, provide the user with the response they initially requested.
Correct Answer:
B
Reference:
https://developer.amazon.com/en-US/docs/alexa/custom-skills/send-the-user-a-progressive-response.html
B
Reference:
https://developer.amazon.com/en-US/docs/alexa/custom-skills/send-the-user-a-progressive-response.html
send
light_mode
delete
Question #17
An Alexa Skill Builder has created a custom skill about basketball including a HowToPlayBasketball intent. When looking at the Intent History page in the developer console, the Builder sees that a number of users are asking the skill how to play baseball. The Builder wants to add a relevant response directing the user back to the topic of basketball.
How should the Builder implement this?
How should the Builder implement this?
- AAdd AMAZON.FallbackIntent and respond with a message about baseball in the handler
- BCreate a custom intent related to baseball, and when matched, provide a relevant response
- CAdd more sample utterances related to baseball in the HowToPlayBasketball intent
- DCreate a new custom baseball slot and add a slot-filling utterance to the HowToPlayBasketball intent.
Correct Answer:
A
Reference:
https://developer.amazon.com/blogs/alexa/post/c97f3bb7-9701-41e8-ac06-a3a44b9f1638/use-the-new-fallback-intent-to-respond-gracefully-to- unexpected-customer-requests
A
Reference:
https://developer.amazon.com/blogs/alexa/post/c97f3bb7-9701-41e8-ac06-a3a44b9f1638/use-the-new-fallback-intent-to-respond-gracefully-to- unexpected-customer-requests
send
light_mode
delete
Question #18
An Alexa Skill Builder is using session attributes to maintain a user's state.
What can the Builder do to ensure that a user's session is not lost if they take too long to answer a question and the skill exists?
What can the Builder do to ensure that a user's session is not lost if they take too long to answer a question and the skill exists?
- ASet shouldEndSession to false in the response object to prevent the skill from exiting.
- BHandle the SessionEndedRequest request type and persist the user's session to a database.
- CReturn false from the SessionEndedRequest handler so the session does not exist.
- DReturn a reprompt in the response object from the SessionEndedRequest handler.
Correct Answer:
A
Reference:
https://developer.amazon.com/blogs/alexa/post/08edaa00-59e2-46b7-aace-4080f2a87450/using-session-attributes-in-your-alexa-skill-to-enhance-the- voice-experience
A
Reference:
https://developer.amazon.com/blogs/alexa/post/08edaa00-59e2-46b7-aace-4080f2a87450/using-session-attributes-in-your-alexa-skill-to-enhance-the- voice-experience
send
light_mode
delete
Question #19
A travel booking skill has slot elicitation for fromCity, toCity, and travelDate inside of a dialog. After going live, the skill is getting negative reviews stating that the skill does not understand the city names when customers try to book travel.
The Alexa Skill Builder adds AMAZON.FallbackIntent to the interaction model with the goal of providing better messaging for out-of-domain utterances.
Why will the addition of AMAZON.FallbackIntent fail to resolve the customer issue?
The Alexa Skill Builder adds AMAZON.FallbackIntent to the interaction model with the goal of providing better messaging for out-of-domain utterances.
Why will the addition of AMAZON.FallbackIntent fail to resolve the customer issue?
- AAMAZON.FallbackIntent will not be triggered in the middle of a dialog.
- BA handler cannot be added to a Live skill.
- CAMAZON.FallbackIntent will cause the slot values to be incorrectly mapped.
- DAMAZON.FallbackIntent cannot be present in a skill with a Dialog directive.
Correct Answer:
A
A
send
light_mode
delete
Question #20
An Alexa Skill Builder is developing a skill that must send an initial welcome email to each new user.
What combination of features would the Builder use to satisfy this requirement? (Choose two.)
What combination of features would the Builder use to satisfy this requirement? (Choose two.)
- AAlexa Settings API
- BEntity resolution
- CCustomer Profile API
- DDevice Address API
- EData persistence
Correct Answer:
AC
AC
send
light_mode
delete
All Pages