[Sep-2021] 1Z0-1071-20 Pre-Exam Practice Tests | Exam Questions and Answers for Oracle Cloud Digital Assistant Study Guide
Oracle Cloud Platform Application Integration 2020 Associate Certification Sample Questions
NEW QUESTION 25
What is the primary purpose of a user channel in Oracle Digital Assistant?
- A. It provides a simple way to connect custom components with back-end systems.
- B. It provides a generic mobile app or web app that you can directly embed in any messenger client.
- C. It provides a simple way to expose PL/SQL packages as REST data services.
- D. It provides the primary mechanism for embedding skills within a digital assistant.
- E. It provides a simple way to connect and adapt messages between a skill or digital assistant and a messenger client.
Answer: C
NEW QUESTION 26
Consider the following dialog flow code in a skill:
Which statement is true?
- A. The skill displays the message "Please wait, we're reviewing your order" and then waits for user input.
- B. The skill displays the message "Please wait, we're reviewing your order", then displays "Almost done...", and then waits for user input.
- C. The skill displays the message "Please wait, we're reviewing your order", then displays "Almost done...", then displays "Thank you for your order.", and then waits for user input.
Answer: A
NEW QUESTION 27
Examine the code snippet below:
Which two statement are true regarding the functionality of a composite bag referenced by the variable pizza?
- A. Each entity item in the composite bag will be prompted for a valid value three times. After the last invalid input, the flow will navigate to a state called maxError.
- B. Each entity item in the composite bag will be prompted for a valid value three times. After the last invalid input, the flow will navigate to a state called setPizzaDough.
- C. Any individual entity item can define its own maxPrompts to override the value in the dialog flow.
- D. The first time an incorrect value for an entity item is resolved, it will result in an error and transition to the state called maxError because cancelPolicy is set to immediate and this overrides the setting for maxPrompts.
Answer: C
NEW QUESTION 28
Which statement is true regarding the digital assistant's Help system intent?
- A. If the digital assistant recognizes the user is asking for help, it will automatically route the conversation to a skill called "Help".
- B. You can define utterances that the digital assistant will recognize when the user is asking for help.
- C. The help intent cannot route the conversation to a specific state within a skill.
- D. The utterances for the help intent are predefined and cannot be changed.
Answer: C
NEW QUESTION 29
What is the purpose of the training models within Oracle Digital Assistant?
- A. automatically create n number of classifications where n is a parameter defined for each skill
- B. build a complete semantic language model allowing a skill to understand 98% of user input in the trained language
- C. allow a skill to classify user input to defined intents
- D. automatically crowdsource sample data to which user input is matched
Answer: C
NEW QUESTION 30
want to save some user input, such as the type of pizza a particular user last ordered, so that it's available the next time that user starts a conversation.
Which type of variable should you use to persist values across multiple invocations of the conversation?
- A. profile variables
- B. user variables
- C. skill variables
- D. context variables
Answer: C
NEW QUESTION 31
You want your skill to prompt users for their first name. The name must then be used in the welcome message at the beginning of each bot-user session.
Your user interface guidelines require that each part of the name begin with a capital letter (for example, John Doe or John William Doe).
Which two BotML code examples print the username correctly if the name is provided as "jOhn William doe" or "JOHN doe"?
- A. Option C
- B. Option A
- C. Option D
- D. Option B
- E. Option E
Answer: A,C
NEW QUESTION 32
You want your skill to prompt users for their first name. The name must then be used in the welcome message at the beginning of each bot-user session.
Your user interface guidelines require that each part of the name begin with a capital letter (for example, John Doe or John William Doe).
Which two BotML code examples print the username correctly if the name is provided as "jOhn William doe" or "JOHN doe"?
- A. Option C
- B. Option A
- C. Option D
- D. Option B
- E. Option E
Answer: A,C
NEW QUESTION 33
You install Oracle Bost Node SDK from GitHub to develop a new custom component service.
Which command, when issued on a command line or terminal window, creates a new custom component service project in the current directory?
- A. bots-node-sdknpm install
- B. bots-node-sdkinit
Create the Custom Component Package
Use the SDK's command line interface (CLI) to create the necessary files and directory structure.
To create the package folder, and the necessary contents, type the following command in a terminal window:
bots-node-sdkinit<top-level folder path>
https://docs.cloud.oracle.com/en-us/iaas/digital-assistant/doc/backend-integration1.html - C. bots-node-sdk service init
- D. bots-node-sdk service
Answer: B
NEW QUESTION 34
What happens after the skill output Welcome to our store's chat bot!'' in this dialog flow?
- A. The skill goes to output2, outputs "You can ask me about what products we have in the store", and then returns control to the user.
- B. The skill displays "Welcome to our store's chat bot!" again.
- C. The skill returns control to the user. After the user enters text, it goes to the intent state.
- D. The skill returns control to the user. After the user enters text, it goes to output2 and outputs "You can ask me about what products we have in the store."
Answer: B
NEW QUESTION 35
When testing your skill, you notice that two of its intents consistently rank as the top two, resolving within just a few points of each other.
Given the unpredictable nature of which intent gets the top score, what would you do to allow the skill user to choose the correct intent?
- A. Change the Explicit Invocation Threshold to zero to ensure that the correct intent is picked up when the user mentions the name of the intent.
- B. Keep adding training data until you get a predictable result every time.
- C. Change the Confidence Threshold during your testing until the correct intent always wins.
- D. Change the Confidence Win Margin so that both intents are offered to the user.
- E. For each intent, create an entity of phrases that are distinct to each intent, and add the appropriate entity to the corresponding intent.
Answer: A
NEW QUESTION 36
Which statement is FALSE regarding the core function of a digital assistant and how it could respond to user input?
- A. It is able to route the conversation to the start state of a skill that's managed by the digital assistant.
- B. It is able to respond to a help request and return a help message, one that can be specific to one of its skills, or to the digital assistant itself
- C. It is able to automatically route the conversation to another digital assistant if the request can't be handled by the current digital assistant.
- D. It is able to respond to a user request to exit the current conversation.
Answer: A
NEW QUESTION 37
You have a skill for ordering pizzas. In your experience, you have found that 95% of your customers want a regular crust and just 5% prefer gluten-free crust. Because so few people are likely to want a gluten-free crust, you don't want to prompt for that option, but you do want to make it available.
Assuming you already have a composite bag entity that contains a PizzaCrust entity that has the values
"regular" and "gluten free", what would be the simplest way to have your skill enable a user to order a pizza with a gluten-free crust without the skill prompting the user for that option?
- A. In the composite bag, set the PizzaCrust entity item's Prompt for Value property to False. Then, once the the composite bag is resolved, check if the PizzaCrust entity has a value. If it doesn't, set its value to
"regular". - B. Don't set a prompt for the PizzaCrust entity item.
- C. For the PizzaCrust entity item, set the Extract With property to reference an entity with the single value
"gluten free". - D. Don't set a prompt for the PizzaCrust entity item and set the Out of Order Extraction property to True.
Answer: B
NEW QUESTION 38
Which statement is FALSE regarding out-of-order messages?
- A. Out-of-order messages occur when a user scroll the conversation history displayed in the messenger client and selects that is no longer in scope for the current conversation.
- B. Dialog flow navigation continues with the state referenced in the out-of-order-message action.
- C. Chatbots don't control the user's input and, therefore, cannot prevent users from selecting out-of-scope actions.
- D. Out-of-order messages are not handled by default. Designers must define out-of-order message handlers at the skill level.
Answer: A
NEW QUESTION 39
Consider this code snippet:
Which two statements about this code are true?
- A. The system.webview component acts a gateway to a web app by naming the Webview service, i.e., DisputeFormService, in the code snippet.
- B. This code snippet supports only one variable as a return value from the web application. When there are multiple return values, they need to be comma-separated. For example:
variable: "outputfromwebl, outputfromweb2 M - C. If the web app returns any values, the System.webview component will store them in the outputfromweb variable.
- D. The web app returns two values and will store them in the fullname and amount variables, respectively.
Answer: A,C
NEW QUESTION 40
......
Oracle Exam Practice Test To Gain Brilliante Result: https://www.testsimulate.com/1Z0-1071-20-study-materials.html