Salesforce Certified OmniStudio Consultant Practice Test - Questions Answers, Page 3

List of questions
Question 21

Agents for an insurance company need to know the current and past weather conditions when creating claims for customers. The consultant implements a FlexCard for weather conditions in the console to ensure the agents have access to the information. The FlexCard needs to provide fields extracted from a weather API and an account field from Salesforce.
According to best practice, what data source should be used?
Streaming API
DataRaptor Extract
REST
Integration Procedure
An Integration Procedure is the best data source to use for a FlexCard that needs to provide fields from both an external API and a Salesforce object. An Integration Procedure can combine multiple DataRaptor actions, such as Extract, Transform, and Load, and also invoke REST or SOAP services.This way, the FlexCard can display data from different sources in one place
Question 22

A company has deployed an OmniScript that is working as designed. During the process, the OmniScript has multiple steps that allow the user to review lists of cases, contacts, quotes, orders, and contracts for an accour
Eachstep uses DataRaptor Extract Actions to retrieve Salesforce data. However, the OmniScript is reaching performance limitations, and the development team warns that they may begin hitting Governor limits.
Which two suggestions should the consultant propose to address this concern?
Choose 2 answers
Replace the DataRaptor Extracts with DataRaptor Turbo Extracts
Add Limit filter in DataRaptor Extract
Combine the DataRaptors into an Integration Procedure
Add Order By filter in DataRaptor Extract
To improve the performance and avoid hitting Governor limits, the consultant should replace the DataRaptor Extracts with DataRaptor Turbo Extracts and combine them into an Integration Procedure. DataRaptor Turbo Extracts are optimized for speed and efficiency, and can retrieve large amounts of data without using SOQL queries.An Integration Procedure can execute multiple DataRaptor actions in one call, reducing the number of requests and processing time
Question 23

How many levels deep can reusable OmniScripts be nested?
2
5
Unlimited
1
Reusable OmniScripts are OmniScripts that can be embedded within other OmniScripts to create modular and reusable components. They can be nested up to unlimited levels deep, as long as there are no circular references or conflicts between the parent and child OmniScripts.
The other options are not correct because:
2: This is too low and does not reflect the full potential of reusable OmniScripts.
5: This is also too low and does not reflect the full potential of reusable OmniScripts.
1: This is incorrect and does not make sense, as reusable OmniScripts are meant to be nested within other OmniScripts.
Question 24

A company needs to create a new quote estimation process for its services team. This process involves multi; steps. The user needs to enter a variable number of rows of data in order to calculate the correct final price f the quote. The data that needs to be entered in each row includes:
* Service category
* Number of hours
* Hourly rate
The number of hours should be multiplied with the hourly rate to calculate the total for each row.
Which three OmniScript elements should the consultant recommend to meet these requirements?
Choose 3 answers
Edit Block
Multi-select
Formula
Step
Input Block
To create a new quote estimation process that involves multiple steps and a variable number of rows of data, the consultant should recommend the following OmniScript elements:
Edit Block: This is an element that allows the user to add, edit, or delete multiple rows of data in a table-like format. It can be used to capture the service category, number of hours, and hourly rate for each row.
Formula: This is an element that allows the user to perform calculations on data using mathematical expressions. It can be used to calculate the total for each row by multiplying the number of hours with the hourly rate.
Input Block: This is an element that allows the user to enter data using various input types, such as text, number, date, picklist, etc. It can be used to display the formula result for each row and the final price for the quote.
The elements that are not suitable for this scenario are:
Multi-select: This is an element that allows the user to select multiple options from a list. It is not relevant for this scenario, as the user needs to enter data in each row, not select from predefined options.
Step: This is an element that organizes the OmniScript into one or more pages. It is not relevant for this scenario, as it does not capture or display any data.
Question 25

A consultant must design a 360 view of the customer. The business requirements are:
* A header card with account information (name, account number, next billing date, invoice method)
* A list of related contacts (first name, last name, phone)
* All the open cases related to the account (subject, priority, SLA)
An account will not have more than 2 contacts, but it could have more than 10 open cases. It is necessary to the different sections available at a glance.
Which two FlexCard features should the consultant recommend to improve the user experience?
Choose 2 answers
Use a Datatable element
Use a Block Element with the Collapse property enabled
Use a Zone Template
Use a Custom Style to adjust height and width
To improve the user experience, the consultant should use a Block Element with the Collapse property enabled and a Zone Template. A Block Element with the Collapse property enabled allows the user to expand or collapse a section of the FlexCard, which is useful for displaying a list of related records.A Zone Template allows the consultant to define the layout and style of the FlexCard, such as the number of columns, rows, and margins
Question 26

Which three of the following are functions of a Text Block element in OmniScript?
Choose 3 answers
Error conditions
User input fields
Links or images
Text formatting
Table formatting
A Text Block element in OmniScript can perform three functions: display links or images, apply text formatting, and format tables. A Text Block element can use HTML tags to create hyperlinks or embed images in the OmniScript. It can also use CSS properties to style the text, such as font size, color, alignment, etc.Additionally, a Text Block element can use HTML table tags to create and format tables in the OmniScript
Question 27

A business needs to create a FlexCard to display open cases for an account. The cases should display different depending on their priority.
* Low or Medium priority cases should display case data and an Update Account Info action.
* High priority cases should include a red border, an alert notification, and an Escalate action.
What is the most efficient way to meet these requirements?
Create a FlexCard with two card states. Use conditions on the state to filter for priority.
Create a FlexCard with one card state. Use conditions on the fields and actions to filter for priority.
Create two FlexCards with one card state each. Use conditions on the states to filter for priority.
Create two FlexCards, one for Low / Medium priority cases and another for High priority cases.
The most efficient way to meet the requirements is to create a FlexCard with two card states. A card state defines how a FlexCard displays data and actions based on certain conditions. The consultant can use conditions on the state to filter for priority, and then customize the fields and actions for each state.This way, the FlexCard can display different information and options for low/medium and high priority cases
Question 28

When designing OmniStudio solutions, what are two reasons that explain why Integration Procedures are recommended as the first choice of data sources for FlexCards and OmniScripts?
Choose 2 answers
Question 29

A business wants to create an OmniScript that allows call center agents to schedule field service appointments with customers. The process needs to retrieve available appointment dates from an external system via a REST A [ and then display them to the user for selection in a dropdown list. Once the user selects a date, a confirmation should display with rich text and images.
Which three OmniScript elements should be used to meet these requirements?
Choose 3 answers
Question 30

A company needs to create an OmniScript with three steps.
* Step 1
* Step 2
* Step 3
Enter customer details
Select a product
Display a price retrieved from a REST API
The product's price should automatically display in Step 3.
What should the consultant add to the design of the OmniScript to meet these requirements?
Question