Certbus > Oracle > Platform as a Service (PaaS) > 1Z0-1071-20 > 1Z0-1071-20 Online Practice Questions and Answers

1Z0-1071-20 Online Practice Questions and Answers

Questions 4

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

A. System variables

B. Variables that are defined in the context section in the dialog flow

C. User variables

D. System.config variables

E. Profile variables

Browse 79 Q&As
Questions 5

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 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" multiple times until an infinite loop gets detected by the dialog flow engine.

D. The code prints "HelloWorld" as a message and triggers dialog flow navigation to the next state.

E. The code prints "HelloWorld" as a message and waits for user input.

Browse 79 Q&As
Questions 6

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. transitionMatch

B. transitionBeforeMatch

C. transitionAfterMatch

D. There is no such property, because this component is a closed system.

Browse 79 Q&As
Questions 7

Examine the code snippet below:

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

pizza?

A. Any individual entity item can define its own maxPrompts to override the value in the dialog flow.

B. 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.

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 setPizzaDough.

D. 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.

Browse 79 Q&As
Questions 8

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. Bot designer is responsible to manually add the webview.onDone parameter to the payload.

B. The key names match the name of the dialog flow variables configured in the "sourceVariableList" property of the system.webview component.

C. The webview.onDone parameter is automatically added to the payload and it passes the skill's callback URL property to the web application.

D. The POST payload is a JSON object that contains an array of key-value pairs.

E. There is no such webview.onDone property passed to the payload.

Browse 79 Q&As
Questions 9

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. Don't set a prompt for the PizzaCrust entity item.

B. For the PizzaCrust entity item, set the Extract With property to reference an entity with the single value "gluten free".

C. 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".

D. Don't set a prompt for the PizzaCrust entity item and set the Out of Order Extraction property to True.

Browse 79 Q&As
Questions 10

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. Depending on digital assistant routing parameters, the user will be prompted to confirm exiting from the current conversation.

B. The conversation can only be exited if the current context score is lower than the Exit Skill Confirmation digital assistant routing parameter.

C. The conversation can only be exited if the current context score is greater than the Exit Skill Confirmation digital assistant routing parameter.

D. 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.

E. The conversation will resume at a state in the skill defined by a digital assistant parameter.

Browse 79 Q&As
Questions 11

Select the FALSE statement regarding Oracle's recommendation for defining your bot's personality and conversational design.

A. 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.

B. You should consider naming your bot and using an appropriate avatar.

C. Your bot should have a persona that matches that of your target audience.

D. Words carry emotions and you should carefully consider verbiage and tone in your dialog responses.

Browse 79 Q&As
Questions 12

In your conversation flow, you want to make sure that users always see a message, even when there is no data to display. To implement this, you decide to use a system.setvariable component that verifies that the variable mydata contains a value and, if it does, sets the value of the displayVar variable to the value of mydata. If no value is specified for mydata, then displayVar is set to the string 'No Data 1. Which two BotML with Apache FreeMarker examples implement this requirement?

A. Option A

B. Option B

C. Option C

D. Option D

E. Option E

Browse 79 Q&As
Questions 13

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 confirm that any changes you make to the intent utterances do not inadvertently change other intent resolutions.

C. Batch testing allows you to test every combination of conversation through your dialog flow.

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.

Browse 79 Q&As
Questions 14

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. context variables

D. profile variables

Browse 79 Q&As
Questions 15

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. Set cancelPolicy to "immediate".

B. There is no such option in system.ResolveEntitis

C. Set cancelPolicy to "true" .

D. Set cancelPolicy to "lastEntity" .

Browse 79 Q&As
Questions 16

Which two statements about skills are true?

A. Customers can only chat with skill when those skills managed by a digital assistant.

B. Skills can access back-end services.

C. Skills have dialog flows that you may configure to create conversation.

D. Skills always use natural languages processing (NLP).

Browse 79 Q&As
Questions 17

Which statement is true regarding the default implementation of out-of-order messages?

A. Navigation remains in the current state.

B. All variables referenced by the out-of-order-message action are cleared.

C. There is no default implementation for out-of-order messages.

D. In the default implementation, when an out-of-order message is detected the navigation continues with the state name associated with the out-of-order message action.

Browse 79 Q&As
Questions 18

To translate output messages, you created a resource bundle in your skill. The resource bundle contains an orderConfirmation key with the following message: Thanks {0} for your order. Your order of a {1} is no its way. In your dialog flow, you have a variable rb of type resourcesBundle defined. In additional, you defined a variable pizzaType holding the type of the pizza (for example, Salami) and a variable pizzaSize holding the size of the Pizza ( for example , large).

A. Option A

B. Option B

C. Option C

D. Option D

Browse 79 Q&As
Exam Code: 1Z0-1071-20
Exam Name: Oracle Cloud Platform Digital Assistant 2020 Specialist
Last Update: Apr 16, 2024
Questions: 79 Q&As

PDF

$45.99

VCE

$49.99

PDF + VCE

$59.99