1z0-1071-22 Oracle Cloud Platform Digital Assistant 2022 Professional

Loading demo links...

Showing 1–3 of 10 questions

Question 1

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?

Select all that apply, then click Submit answer.

  • const order = conversation.properties().orderid;
    const account = conversation.properties().userAccount;

  • const order = conversation.request().variables[•orderid'];
    const account = conversation.request().variables[’accountName 1);

  • const order = conversation.variable(1 orderid');
    const account = conversation.variable('accountName1);

  • const { orderid } = conversation.properties();
    const { accountName > = conversation.properties();

  • const { orderid } = conversation.variable();
    const { accountName } = conversation.variable();

Question 2

Which three statements are true about composite bag entities?

Select all that apply, then click Submit answer.

  • They define a business domain object as a collection of related system entities and custom entities.

  • When you add entities to the composite bag, you can control how they get extracted in related to other entities and when they are prompted for.

  • The composite bag will always enforce that every entity has a valid value before allowing the conversation to move on to the next state in the dialog flow.

  • You need to create a separate composite bag to handle nonentity types such as strings. Locations, and attachments.

  • The composite bag can resolve all entity values using only a single state in the dialog flow.

Question 3

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

Select all that apply, then click Submit answer.

  • displaying any type of input component

  • routing the dialog flow based on values returned from a backend service

  • returning the current value of a requested stock price in a skill message

  • running the skill within a webpage

  • routing to another skill within the suite of skills assembled within a digital assistant