[Nov-2021] Oracle Cloud Digital Assistant 1Z0-1071-20 Exam Practice Dumps [Q28-Q51]

Share

[Nov-2021] Oracle Cloud Digital Assistant 1Z0-1071-20 Exam Practice Dumps

2021 1Z0-1071-20 Premium Files Test pdf - Free Dumps Collection

NEW QUESTION 28
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 29
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 30
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 the "HelloWorld" message in response to the next user message.
  • B. The code prints "HelloWorld" multiple times until an infinite loop gets detected by the dialog flow engine.
  • C. The code prints "HelloWorld" as a message and waits for user input.
  • D. The code prints "HelloWorld" as a message and triggers dialog flow navigation to the next state.
  • E. The code triggers dialog flow navigation to a state, which has its name mapped to the current dialog flow state's HelloWorld action transition.

Answer: A

 

NEW QUESTION 31
To prepare the remote application launch, the System, Webview component calls an intermediary service that prepare the remote web application call. The code snippet is given below:

At run time, the system.Webview component sends the intermediary service a POST request. Which three options are true for the POST payload generated based on the code?

  • A. The key names match the name of the dialog flow variables configured in the "sourceVariableList" property of the system.webview component.
  • B. The POST payload is a JSON object that contains an array of key-value pairs.
  • C. Bot designer is responsible to manually add the webview.onDone parameter to the payload.
  • D. There is no such webview.onDone property passed to the payload.
  • E. The webview.onDone parameter is automatically added to the payload and it passes the skill's callback URL property to the web application.

Answer: B,C,E

 

NEW QUESTION 32
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 33
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 34
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 35
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...", 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 "Almostdone...", then displays "Thank you for your order.", and then completes the conversation.
  • D. 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: C

 

NEW QUESTION 36
A user is in the middle of a conversation flow with a digital assistant but then triggers the Exit system intent by saying "get me out of here". Which statement is true?

  • A. Because the user didn't explicitly specify the invocation name of the skill when exiting, the user will always be prompted to confirm exiting the current conversation.
  • B. The conversation will resume at a state in the skill defined by a digital assistant parameter.
  • C. The conversation can only be exited if the current context score is lower than the Exit Skill Confirmation digital assistant routing parameter.
  • D. Depending on digital assistant routing parameters, the user will be prompted to confirm exiting from the current conversation.
  • E. The conversation can only be exited if the current context score is greater than the Exit Skill Confirmation digital assistant routing parameter.

Answer: E

 

NEW QUESTION 37
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. 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.
  • B. Batch testing allows you to test every combination of conversation through your dialog flow.
  • C. Batch testing allows you to confirm that any changes you make to the intent utterances do not inadvertently change other intent resolutions.
  • D. Having a baseline test allows you to determine whether your intent resolution is still functioning within expected limits given any updates to your service.

Answer: D

 

NEW QUESTION 38
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 39
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 40
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 41
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 42
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 43
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 44
Select the FALSE statement regarding Oracle's recommendation for defining your bot's personality and conversational design.

  • A. Your bot should have a persona that matches that of your target audience.
  • B. You should hide from users the fact that they are communicating with a bot and give them the impression that it's a human they are interacting with.
  • C. You should consider naming your bot and using an appropriate avatar.
  • D. Words carry emotions and you should carefully consider verbiage and tone in your dialog responses.

Answer: C

 

NEW QUESTION 45
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 46
Which two statements about message translation in a skill are true?

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

Answer: B,D

 

NEW QUESTION 47
Which two components can be used in combination with composite bag entities to auto-generate skill responses and flows from definitions saved in bag items?

  • A. System.CommonResponse
  • B. System.List
    https://docs.oracle.com/en/cloud/paas/digital-assistant/use-chatbot/entities1.html#GUID-603C4329-DBBA-42C9-8783-6C27B45BA6A2
  • C. System.ResolveEntities
  • D. System.MatchEntity
  • E. System.Text

Answer: A,C

 

NEW QUESTION 48
To prepare the remote application launch, the System, Webview component calls an intermediary service that prepare the remote web application call. The code snippet is given below:

At run time, the system.Webview component sends the intermediary service a POST request. Which three options are true for the POST payload generated based on the code?

  • A. The key names match the name of the dialog flow variables configured in the "sourceVariableList" property of the system.webview component.
  • B. The POST payload is a JSON object that contains an array of key-value pairs.
  • C. Bot designer is responsible to manually add the webview.onDone parameter to the payload.
  • D. There is no such webview.onDone property passed to the payload.
  • E. The webview.onDone parameter is automatically added to the payload and it passes the skill's callback URL property to the web application.

Answer: B,C,E

 

NEW QUESTION 49
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 50
Consider the following excerpt from a dialog flow code where size is a context variable of value list entity type PizzaSize with values Small, Medium, and Large:

Which two events will occur when a user starts a new conversation with the sentence "Order a Large Pizza"?

  • A. The nlpResultVariable will populate the size value with Large.
  • B. The nlpResultVariable property is not supported by System.List, so no entity extraction will occur.
  • C. The Dialog Engine will transition to the PlaceOrder state.
  • D. The size variable has no value before getPizzaSize is called, so the user will be prompted to select from the list of values.

Answer: A,C

 

NEW QUESTION 51
......

Get ready to pass the 1Z0-1071-20 Exam right now using our Oracle Cloud Digital Assistant  Exam Package: https://www.validtorrent.com/1Z0-1071-20-valid-exam-torrent.html