Latest [Jun 30, 2021] 1Z0-1071-20 Exam with Accurate Oracle Cloud Platform Application Integration 2020 Associate PDF Questions [Q48-Q67]

Share

Latest [Jun 30, 2021] 1Z0-1071-20 Exam with Accurate Oracle Cloud Platform Application Integration 2020 Associate PDF Questions

Take a Leap Forward in Your Career by Earning Oracle 80 Questions

NEW QUESTION 48
You are building a skill for ordering pizza and you need it to determine when a user enters the pizza toppings and pizza size in their request.
Which Oracle Digital Assistant feature would you use to identify these variable values in a user's message?

  • A. entities
  • B. answer intents
  • C. digital assistants
  • D. channels

Answer: A

 

NEW QUESTION 49
Error handlers can be defined in various locations with different scopes.
Which three statements are true about error handling?

  • A. An error handler can be defined as a transition on any dialog flow state in a skill.
  • B. The system error handler is called in case of an error when no error handling is defined on the current dialog flow state or as a default transition.
  • C. You can define a system-wide custom error handler at the digital assistant level.
  • D. An error handler can be defined globally for a skill using the defaultTransition error transition.
  • E. Implicit error handling is always performed even if there are other error handlers defined in the flow.

Answer: B,C,E

 

NEW QUESTION 50
Assuming that conversation is a reference to the Bots Node SDK, which two sets of code statements to access the custom component's orderid and userAccount input parameters are valid?

  • A. const{ orderid } = conversation.properties();
    const { accountName> = conversation.properties();
  • B. const order = conversation.properties().orderid;
    const account = conversation.properties().userAccount;
  • C. const order = conversation.request().variables[*orderid'];
    const account = conversation.request().variables['accountName 1);
  • D. const{ orderid } = conversation.variable();
    const { accountName } = conversation.variable();
  • E. const order = conversation.variable(1 orderid');
    const account = conversation.variable('accountName1);

Answer: B,D

 

NEW QUESTION 51
Oracle Digital Assistant supports several messenger-specific channel types, such as iOS, Android, Web, and Facebook. If your messenger client is not supported, what is the simplest way to connect your skill or digital assistant to the client?

  • A. Use a custom component to extend a supported channel type.
  • B. Implement the channel using a Webhook.
  • C. You can't connect to a unsupported messenger client. You can only connect channels to the supported clients.
  • D. Ensure that your skill only outputs text and not Images or visual components such as cards. Then use the standard Web channel, which you can use for text-only conversations.

Answer: B

 

NEW QUESTION 52
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 53
Assuming that conversation is a reference to the Bots Node SDK, which two sets of code statements to access the custom component's orderid and userAccount input parameters are valid?

  • A. const order = conversation.properties().orderid;
    const account = conversation.properties().userAccount;
  • B. const { orderid } = conversation.properties();
    const { accountName > = conversation.properties();
  • C. const { orderid } = conversation.variable();
    const { accountName } = conversation.variable();
  • D. const order = conversation.request().variables[*orderid'];
    const account = conversation.request().variables['accountName 1);
  • E. const order = conversation.variable(1 orderid');
    const account = conversation.variable('accountName1);

Answer: A,C

 

NEW QUESTION 54
In reviewing a colleague's code, you note the following code in the dialog flow which takes user input and replaces the words "authorized user" or "auth user" with "AU" before then calling the intent resolution in the dialog flow with the altered string.
"${utterance.value?replace('authorized user|auth user', 'AU','r')}"
Why would your colleague have done this?

  • A. "Authorized" and "auth" are reserved words and would fail intent resolution.
  • B. By replacing "Authorized" and "auth", one is able to bypass the usual authentication mechanism, which requires a user to log on.
  • C. The sentence is being normalized by replacing different versions of words such that they are aligned with the term used in the training utterances.
  • D. The language tag is being changed to Australian (AU) to better match the language of the training utterances.
  • E. The above code has no impact on intent resolution.

Answer: E

 

NEW QUESTION 55
What is the error message ''Your session appears to be in an infinite loop'' usually caused by?

  • A. a problem with the Digital Assistant tenant
  • B. a problem with a custom component that is referenced in your dialog flow
  • C. a missing keepTurn = true entry in the dialog flow
  • D. a component in a dialog flow state that references a variable that has a value set while the dialog flow state continues to transition

Answer: A

 

NEW QUESTION 56
Which two features of Oracle Digital Assistant should you use to allow a skill to specifically classify the user message "What's my balance in savings?" and to identify the type of account?

  • A. a resource bundle populated with phrases such as "check balance", "What is my current balance?", and
    "How much money do I have?"
  • B. dialog flows with a system.Text component to read the user input
  • C. an input form rendered by a webview that is hosted within a Digital Assistant
  • D. an entity that defines account types (with values such as "checking" or "savings")
  • E. an intent that is been trained with utterances such as "check balance", "What is my current balance?", and "How much money do I have?"

Answer: A,E

 

NEW QUESTION 57
For live-agent transfer, you want the bot-user conversation history to become available to the human agent that the conversation is transferred to.
How do you make this conversation history available?

  • A. Set the convHistory property in the system.Agentinitiation component.
  • B. In the skill settings, either switch Enable Insights to On or switch Skill Conversation to On, depending on the Digital Assistant version.
  • C. This is controlled from Oracle Service Cloud and has to be turned on by setting a custom property.
  • D. Set a custom property on the Oracle Service Cloud instance that's accessed by Oracle Digital Assistant.

Answer: D

 

NEW QUESTION 58
Which three options are true for this dialog flow code?

  • A. The system.List component always displays a list of options, regardless of the value of accountType.
  • B. If System.SetVariable sets accountType to a value, the System.List component does not display a list of options.
  • C. If no accountType value is set in the startBalances state, the Dialog Engine moves to the next state, askBalancesAccountType, which lists options for different account types.
  • D. The code is poorly programmed because the accountType variable will be set twice.
  • E. Usage of empty transitions is a bad practice because it can lead to unexpected results.

Answer: A,B,C

 

NEW QUESTION 59
Which two statements about message translation in a skill are true?
If auto-translation is enabled and a component has its translate property set to false, then the component output message or level will not get auto-translated to the detected user languages.
A system.Output component that reads its text message from a resource bundle does not require auto-translation or its translate property set to true to display translated.

  • A. A missing system. DetectLanguage state in a dialog flow causes an exception for components that read their output message from bundle.
  • B. Enabling auto-translation in a dialog flow does not translate the user input message.
  • C. For the System.Translateinput component to work, it requires a previously executed system.DetectLanguage component state.

Answer: B,C

 

NEW QUESTION 60
You want the flow to navigate to the cancel transition immediately after the maximum number of failed attempts are exceeded in the System.ResolveEntities Components.
Which option must you use?

  • A. There is no such option in system.ResolveEntitis
  • B. Set cancelPolicy to "immediate".
  • C. Set cancelPolicy to "lastEntity" .
    https://docs.oracle.com/en/cloud/paas/digital-assistant/use-chatbot/built-components-properties-transitions-and-usage.html#GUID-259C152F-3F53-4422-B89C-6FA7F01C1762 cancelPolicy Determines the timing of the cancel transition:
    immediate-Immediately after the allotted maxPrompts attempts have been met for an entity in the bag.
    lastEntity-When the last entity in the bag has been matched with a value.
  • D. Set cancelPolicy to "true" .

Answer: B

 

NEW QUESTION 61
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 62
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 63
You want your skill to transfer conversations over to Oracle Service Cloud customer service representatives. Which type of channel do you create to enable the skill to do this?

  • A. Users
    https://docs.oracle.com/en/solutions/handoff-skill-to-live-agent/transfer-users-skill-bot-live-agent1.html#GUID-237F078E-94FF-4A4B-9B70-CA04D619C49F
  • B. Agent Integrations
  • C. Applications
  • D. System

Answer: B

 

NEW QUESTION 64
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 65
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 66
Which two statements describe what happens when a System.DatectLanguages component is used in a dialog flow?

  • A. The system.DetectLanguage component sets the profile.languageTag variable to the language code of the detected user language.
  • B. The system.DetectLanguage component does not detect English because it is the default language.
  • C. A system.DetectLanguage component state causes an exception if no translation service is configured for a skill.
  • D. The system. DetectLanguage component sets the autoTranslate variable to the language code of the detected user language.
  • E. The system.DetectLanguage component sets the profile.locale variable to the language code of the detected user language.

Answer: A,E

 

NEW QUESTION 67
......

Authentic Best resources for 1Z0-1071-20 Online Practice Exam: https://www.itexamdownload.com/1Z0-1071-20-valid-questions.html