[Feb-2022] Oracle 1Z0-1071-20 DUMPS WITH REAL EXAM QUESTIONS [Q46-Q68]

Share

[Feb-2022] Oracle 1Z0-1071-20 DUMPS WITH REAL EXAM QUESTIONS

2022 New Actual4Dumps 1Z0-1071-20 PDF Recently Updated Questions


Oracle 1Z0-1071-20 Exam Syllabus Topics:

TopicDetails
Topic 1
  • Perform Apache FreeMarker Operations
  • Handle errors in Conversation Design
Topic 2
  • Describe Plan and Personality in Conversation Design
  • Describe Training Models
Topic 3
  • Tune Routing Behavior and limit the frequency of Prompts
  • Implement Intent Design
Topic 4
  • Describe primary building blocks and provisioning of Oracle Digital Assistant
Topic 5
  • Perform Test process, roles and best practices
  • Create and use Composite Bag
Topic 6
  • Navigation using Dialog Flows
  • Explain Identity Integration
  • Build a Multi-Language Skill
Topic 7
  • Implement Digital Assistant Intents and Interactions
  • Escaping the validation loop
Topic 8
  • Create, Build and Implement a Custom Component and Embedded Container Service

 

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

Answer: D

 

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

  • A. a problem with a custom component that is referenced in your dialog flow
  • B. a problem with the Digital Assistant tenant
  • 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: B

 

NEW QUESTION 48
Which statement about digital assistants is FALSE?

  • A. A digital assistant can be used to manage a set of skills, including skills that you create yourself and skills that you have added from the Skill
  • B. A digital assistant ensures that a user completes a conversation in one skill before allowing that user to trigger the intent of a different skill
  • C. A connection to a back-end service is through a custom component that is used by a skill, rather than one that is used by a digital assistant.
  • D. A digital assistant can communicate with customers through different messaging platforms.

Answer: B

 

NEW QUESTION 49
Examine the code snippet below:

Which two statement are true regarding the functionality of a composite bag referenced by the variable pizza?

  • A. 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.
  • 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. 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.
  • D. Any individual entity item can define its own maxPrompts to override the value in the dialog flow.

Answer: D

 

NEW QUESTION 50
You are writing a dialog flow and you are at the end of the conversation. For the final state, you are not sure whether to use a return transition or use a next transition that goes to the start of the dialog flow.
Which statement is true?

  • A. The next and return transitions are the same and you can use them interchangeably.
  • B. The return transition goes to the start of the dialog flow and resets all variables, whereas next simply navigates.
  • C. The next transition automatically clears variables on navigation, whereas return doesn't.
  • D. The next transition can only be used for forward navigation in the flow.

Answer: D

 

NEW QUESTION 51
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. For each intent, create an entity of phrases that are distinct to each intent, and add the appropriate entity to the corresponding intent.
  • B. Change the Confidence Win Margin so that both intents are offered to the user.
  • C. Keep adding training data until you get a predictable result every time.
  • D. Change the Confidence Threshold during your testing until the correct intent always wins.
  • E. 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.

Answer: E

 

NEW QUESTION 52
You are advised to implement an 80/20 split with training and test utterances. This means that 80% of new utterances harvested from the conversation logs should be used as intent training utterances and 20% for testing.
Why is this a good practice?

  • A. By performing an 80/20 split, you are randomizing which data is added to the utterances.
  • B. By keeping 20% for testing, you are able to test the model with data on which it has not been specifically trained.
  • C. Adding 100% of user phrases to the intent would overload the model.
  • D. Batch testing works more efficiently when there is a ratio of one test utterance for every five training utterances.

Answer: C

 

NEW QUESTION 53
What happens after the skill output Welcome to our store's chat bot!'' in this dialog flow?

  • A. 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."
  • B. The skill returns control to the user. After the user enters text, it goes to the intent state.
  • C. The skill displays "Welcome to our store's chat bot!" again.
  • D. 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.

Answer: C

 

NEW QUESTION 54
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. skill variables
  • B. user variables
  • C. profile variables
  • D. context variables

Answer: A

 

NEW QUESTION 55
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. This is controlled from Oracle Service Cloud and has to be turned on by setting a custom property.
  • C. Set a custom property on the Oracle Service Cloud instance that's accessed by Oracle Digital Assistant.
  • D. In the skill settings, either switch Enable Insights to On or switch Skill Conversation to On, depending on the Digital Assistant version.

Answer: C

 

NEW QUESTION 56
An input component references an entity-type variable from its variable property and does not have the maxPrompts property set. Which two statements describe valid options to help users deal with validation errors?

  • A. You can use the alternatePrompt property for user input components to display alternative prompts.
  • B. You can use the user input component's textReceived action transition to detect validation errors and to navigate to a state in the dialog flow.
  • C. You can use the user input component's cancel action transition to navigate to a different state in the dialog flow, display a help message to the user, and navigate back into the dialog flow state that previously failed input validation.
  • D. You can use the onlnvaliduserlnput property on the System.commonResponse component to conditionally show or hide UI controls.
  • E. You can use the system. invaliduserinput?booiean expression to detect a previously failed input validation and display alternative prompts or additional UI controls.

Answer: D,E

 

NEW QUESTION 57
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. channels
  • B. digital assistants
  • C. answer intents
  • D. entities

Answer: D

 

NEW QUESTION 58
As per Oracle's recommendation, which is the best practice regarding conversational design?

  • A. Ask users open-ended questions such as "how can I help you?"
  • B. To account for possible mistakes, make it clear to users that the bot is still learning.
  • C. Use quick reply buttons (as opposed to natural language inputs) as much as possible.
  • D. Ensure that capabilities of the bot f the things that it can and can't do") are clear and discoverable.

Answer: A

 

NEW QUESTION 59
Imagine that you have a financial planning skill. Which two functionalities would typically be implemented as a custom component?

  • A. running the skill within a webpage
  • B. displaying any type of input component
  • C. returning the current value of a requested stock price in a skill message
  • D. routing to another skill within the suite of skills assembled within a digital assistant
  • E. routing the dialog flow based on values returned from a backend service

Answer: A,E

 

NEW QUESTION 60
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", then displays "Almost done...", then displays "Thank you for your order.", and then waits for user input.
  • B. The skill displays the message "Please wait, we're reviewing your order" and then waits for user input.
  • C. The skill displays the message "Please wait, we're reviewing your order", then displays "Almost done...", and then waits for user input.

Answer: B

 

NEW QUESTION 61
Which variable type is automatically set with values from the chat client,such as locate and timezoneoffset?

  • A. System variables
  • B. Profile variables
  • C. System.config variables
  • D. User variables
  • E. Variables that are defined in the context section in the dialog flow

Answer: C

 

NEW QUESTION 62
In a validation loop, users are repeatedly asked to enter the same information, thereby preventing them from transitioning to a different dialoq flow state in a conversation.
What is causing the validation loop?

  • A. The input component associated with a state references a variable of an entity type and the maxPrompts property is not set.
  • B. The dialog flow state uses an input component that references a nonentity type variable. The same dialog flow state is referenced in the next transition.
  • C. The nlpResultvariable property of the input component points to "iResult", which is a variable of type
    "nlpresuit".
  • D. The keepTurn property of the input component is set to true and the maxPrompts property is set to a value greater than 0.

Answer: D

 

NEW QUESTION 63
You have been asked to make recommendations to a customer on the value of having a catalogue of test phrases that you can use for batch testing intents.
Which statement is the recommendation you would NOT make?

  • A. Having a baseline test allows you to determine whether your intent resolution is still functioning within expected limits given any updates to your service.
  • B. Batch testing allows you to confirm that any changes you make to the intent utterances do not inadvertently change other intent resolutions.
  • C. Batch testing allows you to have a baseline of phrases to test against, so you can demonstrate whether your skill is resolving intents more accurately over time.
  • D. Batch testing allows you to test every combination of conversation through your dialog flow.

Answer: A

 

NEW QUESTION 64
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 65
Which property in system.ResolveEntities, when set to true, enables a temporary transition from the entity matching performed by this component to a state in which you may decide to call a custom component?

  • A. transitionBeforeMatch
  • B. transitionAfterMatch
  • C. There is no such property, because this component is a closed system.
  • D. transitionMatch

Answer: B

 

NEW QUESTION 66
With the conversation variable being the reference to the Bots Node SDK, which statement correctly describes what happens when the custom component executes the following code?
conversation.reply( 1 HelloWorld 1 );
conversation.keepTurn(true);
done();

  • A. The code prints "HelloWorld" as a message and triggers dialog flow navigation to the next state.
  • B. The code triggers dialog flow navigation to a state, which has its name mapped to the current dialog flow state's HelloWorld action transition.
  • C. The code prints "HelloWorld" as a message and waits for user input.
  • D. The code prints the "HelloWorld" message in response to the next user message.
  • E. The code prints "HelloWorld" multiple times until an infinite loop gets detected by the dialog flow engine.

Answer: D

 

NEW QUESTION 67
Which two statements about message translation in a skill are true?

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

Answer: A,E

 

NEW QUESTION 68
......

Latest 1Z0-1071-20 Pass Guaranteed Exam Dumps Certification Sample Questions: https://www.actual4dumps.com/1Z0-1071-20-study-material.html