May 02, 2023 Detailed New 1z0-1071-22 Exam Questions for Concept Clearance [Q15-Q39]

Share

May 02, 2023 Detailed New 1z0-1071-22 Exam Questions for Concept Clearance

1z0-1071-22 Exam Preparation Material with New 1z0-1071-22 Dumps Questions.


Oracle 1z0-1071-22 Exam Syllabus Topics:

TopicDetails
Topic 1
  • Explain architecture of Oracle Digital Assistant
  • Describe Plan and Personality in Conversation Design
Topic 2
  • Describe primary building blocks and provisioning of Oracle Digital Assistant
  • Tune Routing Behavior and limit the frequency of Prompts
Topic 3
  • Backend Integration and Channels
  • Navigation using Dialog Flows
  • Handle Out-of-order messages

 

NEW QUESTION 15
Examine the code snippet below:

Which two statement are trueregarding 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. Any individual entity item can define its own maxPrompts to override the value in the dialog flow.
  • 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. 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.

Answer: B

 

NEW QUESTION 16
intent has been configured with a composite bag entity.
Which statement is FALSE?

  • A. The conversation is entirelysequential, where users can only input values in the order determined by the dialog flow definition.
  • B. The skill may allow users to update their previous input.
  • C. The composite bag entity slots values as they are provided from the user input. It then prompts for other entity item values.
  • D. The composite bagentity is typically resolved using a system.ResolveEntities component or a system.commonResponse component.

Answer: D

 

NEW QUESTION 17
Consider the followingexcerptfromadialogflowcode wheresizeis a context variableof valuelist entitytype PizzaSizewithvaluesSmall,Medium,andLarge:

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 size variable has no value before getPizzaSize is called, so the user will be prompted to select from the list of values.
  • C. The Dialog Engine will transition to the PlaceOrder state.
  • D. The nlpResultVariable property is not supported by System.List, so no entity extraction will occur.

Answer: A,C

 

NEW QUESTION 18
You install Oracle Bost Node SDK from GitHub to develop a new custom component service.
Which command, whenissued on a command line or terminal window, creates a new custom component service project in the current directory?

  • A. bots-node-sdk service
  • B. bots-node-sdk service init
  • C. bots-node-sdk npm install
  • D. bots-node-sdk init

Answer: D

Explanation:
Explanation
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-sdk init <top-level folder path>
https://docs.cloud.oracle.com/en-us/iaas/digital-assistant/doc/backend-integration1.html

 

NEW QUESTION 19
Considerthis codesnippet:

Whichtwostatementsaboutthis codearetrue?

  • A. This codesnippet supports only onevariableasa returnvalue fromthe webapplication.When therearemultiplereturnvalues,they needtobecomma-separated.Forexample:
    variable:"outputfromwebl,outputfromweb2M
  • B. If thewebappreturnsanyvalues,theSystem.webviewcomponentwillstorethemintheoutputfromwebvariable.
  • C. Thesystem.webviewcomponent acts a gateway to
    awebappbynamingtheWebviewservice,i.e.,DisputeFormService,inthecodesnippet.
  • D. The webappreturns twovalues and willstoretheminthefullnameandamountvariables,respectively.

Answer: B,C

 

NEW QUESTION 20
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. transitionAfterMatch
  • B. There is no such property, because this component is a closed system.
  • C. transitionMatch
  • D. transitionBeforeMatch

Answer: A

 

NEW QUESTION 21
Youwantyourskilltooutputthesizeofthepizzathatwasordered..
Which FreeMarker operation must you use

  • A. "You ordered a ${size[0]} pizza." 3)
  • B. "You ordered a ${size.value} pizza.
  • C. "You ordered a${size.string} pizza."
  • D. "You ordered a ${size} pizza." :)

Answer: A

 

NEW QUESTION 22
Which two statements are true the purpose of the compose bag entity item Out of Order Extraction property?

  • A. When set to True, an entity item cannot be resolve until a dependent entity item is first resolved.
  • B. Only set to True, an entity item value can be updated when prompting for a different entity item value.
  • C. When set to True, an entity item value can be updated when prompting for a different entity item value.
  • D. It should not be used for String entity items.
  • E. Only when set to true can entity values be specific in any order in the initial user input.

Answer: A,B

 

NEW QUESTION 23
What happens if there is a system error and the state does not have an error action?

  • A. The skill outputs the Unexpected Error Prompt value and then transitions to the statethat is defined by the defaultTransitions error action. If there isn't one, then it ends the conversation.
  • B. The skill transitions to the state that is defined by the defaultTransitions error action. If there isn't one, then it outputs the Unexpected Error Prompt value.
  • C. The skill transitions to the state that is defined by the next action. If there isn't one, then it transition to the defaultTransitionserror action.
  • D. The skill transitions to the state that is defined by the next action.. If there isn't one, then it transitions to the next state in the dialog flow.

Answer: D

 

NEW QUESTION 24
Assuming conversation is the custom component SDK handle, which two codestatements are valid to access the order and userAccount input parameters of the custom component?
A)

B)

C)

D)

E)

  • A. Option A
  • B. Option C
  • C. Option D
  • D. Option E
  • E. Option B

Answer: C,D

 

NEW QUESTION 25
You are writing adialogflowandyouare attheend oftheconversation.Forthe finalstate,you arenotsurewhethertouse areturntransition or use anexttransitionthatgoes tothestartof thedialogflow.
Which statementis true?

  • A. Thenexttransition automaticallyclearsvariablesonnavigation,whereasreturndoesn't.
  • B. Thereturntransition goestothestartof thedialogflow andresetsall variables,whereasnextsimplynavigates.
  • C. Thenexttransition canonly be usedforforwardnavigation intheflow.
  • D. Thenextandreturntransitionsare the same andyoucan use them interchangeably.

Answer: C

 

NEW QUESTION 26
Forlive-agenttransfer,you wantthebot-user conversation historyto becomeavailableto the humanagentthat theconversation istransferredto.
Howdoyoumakethisconversationhistoryavailable?

  • A. Thisiscontrolled from OracleServiceCloud and hastobe turnedonbysetting acustomproperty.
  • B. Inthe skillsettings,either switch EnableInsights to On orswitch SkillConversation to On,depending ontheDigital Assistant version.
  • C. Setacustompropertyon the OracleServiceCloudinstancethat's accessedbyOracleDigitalAssistant.
  • D. SettheconvHistorypropertyinthesystem.Agentinitiationcomponent.

Answer: C

 

NEW QUESTION 27
Which two statements describe what happens when a System.DatectLanguages component is used in a dialog flow?

  • A. The system. DetectLanguage component sets the autoTranslate 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 configuredfor a skill.
  • D. The system.DetectLanguage component sets the profile.languageTag 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: D,E

 

NEW QUESTION 28
What is the purpose of the training models within Oracle Digital Assistant?

  • A. automatically crowdsource sample data to which user input is matched
  • B. automatically create n number of classifications where n is a parameter defined foreach skill
  • C. allow a skill to classify user input to defined intents
  • D. build a completesemantic language model allowing a skill to understand 98% of user input in the trained language

Answer: C

 

NEW QUESTION 29
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 "lastEntity" .
  • B. There is no such option in system.ResolveEntitis
  • C. Set cancelPolicy to "immediate".
  • D. Set cancelPolicy to "true" .

Answer: C

Explanation:
Explanation
https://docs.oracle.com/en/cloud/paas/digital-assistant/use-chatbot/built-components-properties-transitions-and-u 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.

 

NEW QUESTION 30
Consider thefollowing dialog flowcodeinaskill:

Whichstatementistrue?

  • A. The skilldisplaysthemessage"Pleasewait,we're reviewing yourorder"and thenwaitsforuser input.
  • B. The skilldisplaysthemessage"Pleasewait,we'rereviewingyourorder",thendisplays"Almostdone...",then displays"Thankyouforyourorder.",and thenwaitsforuser input.
  • C. Theskilldisplays themessage"Pleasewait,we're reviewingyourorder",thendisplays"Almostdone...",and thenwaitsforuser input.
  • D. Theskilldisplaysthemessage"Pleasewait,we'rereviewingyourorder",thendisplays
    "Almostdone...",thendisplays "Thankyouforyourorder.",andthencompletestheconversation.

Answer: D

 

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

Answer: A

 

NEW QUESTION 32
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 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.
  • C. 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
  • D. A digital assistant can communicate with customers throughdifferent messaging platforms.

Answer: C

 

NEW QUESTION 33
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 user request to exit the current conversation.
  • 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 isable 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

Answer: A

 

NEW QUESTION 34
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 onthe code?

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

Answer: B,C,D

 

NEW QUESTION 35
Which two statements are true regardinglocal web application invocation using the system.webview component?

  • A. system.webview components can only be used with web channels.
  • B. Local webviews require SPA applications to have an index.html file in their root folder.
  • C. Local webviews require a Node.js environment and must have a package, json file in their root folder.
  • D. An SPA application can issue an Ajax post command to the callback URL that hasbeen passed with the web application launch

Answer: B,C

 

NEW QUESTION 36
WhenyouconfigureanapplicationinOracleIdentity CloudServiceto be consumed byOracleDigitalAssistantforthesystem.OAuth2AccountLinkcomponent, whydoyouneedtohave the RefreshTokengrantselected?

  • A. Youneedarefreshtoken toforceasuccessfullogoutof theloggedin user.
  • B. The RefreshTokengrant ensuresthatafresh access tokenisretrievedevenifa user'spasswordin Oracle IdentityCloudServicehaschanged,thusensuringtheuseruninterruptedaccess.
  • C. The RefreshTokengrantensures that theSystem.OAuth2Accountlinkcomponentcan refresh anexpiredaccesstokenautomaticallybecause theaccesstoken hasamuch shorter lifespan than the refresh token.
  • D. TheRefreshTokengrant ensuresthatuserswillneverhaveto sign in tothe skillagainaftertheir initial login.

Answer: C

 

NEW QUESTION 37
With the conversation variable being the reference to the Bots Node SDK, which statementcorrectly 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. Thecode 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 "HelloWorld" as a message and triggers dialog flow navigation to the next state.
  • E. The code prints "HelloWorld" multiple times until an infinite loop gets detected by the dialog flow engine.

Answer: A

 

NEW QUESTION 38
Which is a FALSEstatement about empty transitions?

  • A. You should define a next transition on every state.
  • B. Empty transitions can lead to unexpected navigation.
  • C. Empty transitions occur when using the next transition element.
  • D. Avoiding empty transitions will preventmany unexpected dialog flows.

Answer: C

 

NEW QUESTION 39
......

1z0-1071-22 2023 Training With 80 QA's: https://www.exam4docs.com/1z0-1071-22-study-questions.html