Font size
WorksheetsPega Application Quiz
Total questions: 77
Worksheet time: 41mins
What is a child case in Pega?
A case that does not have a parent case
A case that requires completion to resolve the parent case
A case that can only be created manually
A case that is always resolved first
How can data be copied from a parent case to a child case?
By creating a new parent case
By deleting the parent case
By manually entering the data again
Through a process known as data propagation
In which scenario would you typically create a child case?
When different parties are involved in the work
When the work can be completed in a single step
When the case does not require any data
When the case is not related to any other case
Which automation shape in Pega is used to add a child case to a case type?
Update Case
Create Child Case
Create case
Persists Case
When can a parent case resolve in relation to its child cases?
As soon as the parent case is created
Only after all child cases are resolved
At any time regardless of child cases
Only if the child cases are in progress
A __________ is a case that does not have a parent case but can become a parent of other cases.
Child Case
Parent Case
Top-Level Case
Sub Case
State whether the given statement regarding child cases is True or False. A parent case can create multiple child cases.
TRUE
FALSE
Sam is using App Studio to configure a Pega application for loan approval. There is a stage called "Document Submission" where applicants upload their financial documents. If the documents are submitted within five days of the loan application submission date, the process should skip the "Credit Check" stage and proceed directly to the "Approval" stage. How would Sam configure this condition in Pega?
Use a Custom condition with the expression: "DaysBetween(applicationSubmissionDate, CurrentDate) <= 5" to skip the "Credit Check" stage.
Use a When condition with the expression: "DaysBetween(applicationSubmissionDate, CurrentDate) <= 5" to skip the "Credit Check" stage.
Use a Custom condition with the expression: "DaysBetween(applicationSubmissionDate, CurrentDate) > 5" to skip the "Document Submission" stage.
Use a When condition with the expression: "DaysBetween(applicationSubmissionDate, CurrentDate) > 5" to skip the "Document Submission" stage.
Match the following configuration and its purpose for conditional processing: A). Custom Condition B). Expression C). Never D). Always 1). Do not configure any skip condition for stage.2). It is used to skip a stage or process based on a condition in App Studio.3). It is used when the process doesn't skip.4). It is used to skip a Stage or process with an expression in Dev Studio.
A->1,B->2,C->3,D->4
A->4,B->3,C->2,D->1
A->2,B->4,C->1,D->3
A->3,B->4,C->1,D->2
Which of the following statements about skipping stages and processes in Pega are true? (Choose 2)
A Stage is never skipped unless a Condition is configured.
A Stage is always skipped unless a Condition is configured.
A process will not start unless a condition is specified.
A process will always start unless a condition is specified.
What is the primary purpose of a Data Transform in Pega?
To delete unnecessary data
To manipulate and transfer data within an application
To create new UI elements
To validate user inputs
What is the function of the Run Data Transform Automation?
It runs a selected Data Transform at runtime
It creates a new case instance
It exports case data to external systems
It deletes outdated case data
What does a post-processing Data Transform do?
It executes before the Step runs
It executes after the Step runs to manipulate or transfer data
It runs independently of case processing
It only applies to UI rules
Which of the following is an example of converting data using a Data Transform?
Changing text color based on a rule
Generating a new case from an existing one
Changing a string date ("December 4, 2021") into a date property (12/04/2021)
Validating form inputs
Which of the following automation step can be used to execute a Data Transform at runtime?
Run Data Transform
Send Email
Create Case
Duplicate Search
Which of the following are valid uses of Data Transforms?(Choose Two)
Copying data between properties
Creating new case types
Converting data formats
Modifying security settings
In App Studio, how can you apply Data Transforms? (Choose Two)
By modifying the database schema
By writing a JavaScript function
By using the Run Data Transform Automation
By configuring a pre/post-processing action
What actions can a Data Transform perform? (Choose Two)
Setting default values
Copying the data from one property to another property
Validating user authentication
Prevents all data modifications
Match the following Data Transform actions with the given examples. A. Copying Data B. Converting Data C. Setting Default Values 1. Assigning "Pending" as the default status 2. Moving Billing Address property value to Shipping Address property. 3. Changing "January 1, 2024" to 01/01/2024.
A→1, B→2, C→3
A→2, B→3, C→1
A→2, B→1, C→3
A→3, B→2, C→1
Karthik is developing a purchasing application in Pega, where users enter a delivery date as a string (e.g., "March 10, 2025"). He needs to ensure that the date is stored in the correct format (03/10/2025). How can Karthik achieve this?
Use a Data Transform to convert the string to a date
Manually input the date in the correct format
Use a Decision Table to store the date
Require users to enter the date in numerical format
John is a System Architect working on an online shopping application built on the Pega platform. As per the application requirements, the shipping address should be automatically copied to the billing address if the user selects the option "Same as Shipping." Which approach should John use to achieve this?
Require users to manually enter the billing address
Configure a Data Transform in a post-processing action to copy the shipping address to the billing address
Use a Decision Table to store and map shipping and billing addresses
Create a separate case type to manage billing information
Mary is a system architect developing a Hotel Booking Application using the Pega Platform. As a part of the booking process, when a guest selects a check-in date, the system should automatically set the check-out date to the next day by default, unless the guest chooses to modify it. What is the best way to implement this requirement?
Use a Decision Table to manage check-in and check-out dates
Require guests to manually enter both check-in and check-out dates
Use a Data Transform to set the default check-out date
Add a separate step for selecting the check-out date
In which situations is creating a child case beneficial in a pega application? (Choose two)
To model work that different parties perform.
To model work that follows different time frames.
To reduce memory usages in application.
To model work that is not common to multiple case type.
Which features can be used to manage dependencies between a parent and child case? (Choose two)
Case dependency settings.
Skipping stages in the child case.
Data propagation from the child case to the parent.
Resolving parent case automatically.
Match the following based on child and parent case in pega: A).Create Case B).Data propagation C).Top-Level cases 1).A case that does not have a parent case but can become a parent of other cases. 2).The automation shape used to create a child case in pega. 3).It is used to transfer information from the parent case to the child case.
A->1, B->2, C->3
A->2, B->3, C->1
A->3, B->1, C->2
A->2, B->1, C->3
In an online banking application, there is a Transaction Inquiry case type used to detect suspicious transactions. If the customer verifies that a transaction was unauthorized, the Pega Platform creates a Fraud Investigation case type. The details about the transactions are collected in the Transaction Inquiry case type and then populated in the Fraud Investigation case type to aid in identifying the suspicious transaction. What Action do you perform to achieve this configuration in App Studio?
Configure Fraud investigation and Transaction inquiry as parallel processes.
Enter the Transaction data directly to the Fraud Investigation case.
Populating data from one case type to another is not possible.
Configure the Transaction Inquiry as the parent casetype and the Fraud Investigation as the child casetype. Then, propagate the transaction data from the parent case to the child case.
Based on this scenario, identify the parent and child cases.
Keep everything in a single case and use parallel assignments.
Create Claims as parent casetype and Investigation and Damage Assessment as child casetypes.
Use a Wait shape to delay processing until the investigation is complete.
Create Investigation as parent case and damage assessment as child case.
How can you configure the case types to reflect the relationship between the loan request and KYC verification?
Make both loan request and KYC verification parent Case Types.
Make KYC verification a parent Case Type and loan request a child Case Type.
Make mortgage a parent Case Type. Make loan request and KYC verification child Case Types.
Make loan request a parent Case Type and KYC verification a child Case Type.
Which of the following scenarios are the best use cases for implementing child cases? (Choose two)
In a Student Registration case type, students must log in to their student account, select their desired classes, and confirm their selections. However, students cannot select classes with conflicting schedules.
A travel agent allows customers to create an itinerary with separate reservations for flights, hotels, and vehicle rentals. Each reservation may be fulfilled by a different vendor, and multiple reservations of each type may be needed throughout the itinerary.
To apply for a job, an applicant submits a job application, which is then reviewed by Human Resources (HR). As part of the review, HR conducts a background check, contacts the applicant's references, and verifies their education. These tasks can be completed in any order and are specific to the Job Application case type.
During new hire onboarding, which includes seating assignment, hardware and software selection, and orientation session enrollment, new hires must also enroll in benefits. However, benefits enrollment also takes place outside the Onboarding case during the annual open enrollment period.
Which of the following is the best approach to model this scenario in Pega?
Use a single case with multiple assignments for each department.
Use child cases for payroll processing, and training assignments.
Use a subprocess for each department.
Assign all tasks to a single user to coordinate them manually.
How should Sharvin configure this condition in Pega?
Use a When condition with the expression: Age < 50 on the Specialist Consultation stage.
Use a skip condition with the expression: Age >= 50 on the Medical History Review stage.
Use a Skip condition with the expression: Age < 50 on the Specialist Consultation stage.
Use a Skip condition with the expression: Age < 50 on the Treatment Plan stage.
What is the purpose of the pySetFieldDefaults data transform?
To initialize default values for Case properties.
To delete unnecessary Case fields.
To prevent users from modifying data.
To store user preferences.
Which configuration should Jenny use to accomplish this?
Update the data model in Dev Studio.
Configure the pySetFieldDefaults Data Transform.
Ask the user to enter the dates manually.
Use an external database to fetch dates.
Under what circumstances is it appropriate to use a decision table?
For simple yes/no questions.
When evaluating multiple conditions with various outcomes.
Only for numerical calculations.
When there are no conditions to evaluate.
Which of the following scenario demonstrates the use of a decision table?
Determining if a customer qualifies for a discount based on their purchase history.
Calculating the total sales for a month.
Listing all products in a catalogue.
Generating a report of customer feedback.
What happens if a decision table does not return a result for any of the testable rows?
The Decision table returns the result of the Otherwise row.
The decision table returns NULL.
The decision table returns the results of First row.
The decision table returns an ERROR.
What is the primary purpose of a Decision Table in Pega?
To create a user interface.
To store data in a table format.
To evaluate conditions and return an outcome.
To define database schema.
Which of the following are true about Decision Tables in Pega? (Choose two)
Decision Tables evaluate conditions row by row.
Decision Tables can be used only to evaluate nested conditions.
Decision Tables can only return Boolean values.
A Decision table consists of a table of Conditions and results.
Which of the following options will help him configure this requirement?
Decision Tree.
Decision table.
Declare expression.
Boolean expression.
Help David achieve this requirement.
Use Decision table.
Use Decision Tree.
Use Declare Expression.
Use Fork.
Help Sofia implement this requirement.
Sofia can use Boolean expression to achieve this requirement.
Sofia can use Declare expression to achieve this requirement.
Sofia can use Decision table to achieve this requirement.
Sofia can use Map value rule to achieve this requirement.
How can this requirement be achieved?
By using a Fork condition.
By using a decision table.
By using a declare expression.
By using a Data page.
What does the "Create Case" automation shape in Pega do?
Updates the current Case or all child Cases and descendants.
Sends notifications to users.
Creates one or more Cases from the current Case.
Deletes an existing case.
Which automation shape in Pega is used to generate a downloadable report from case data?
Attach Content.
Create a case.
Generate PDF.
Create PDF.
Which automation shape in Pega pauses a Case until a specified condition is fulfilled, such as a timer or Case status?
Wait.
Persist Case.
Update a Case.
Change to a Stage.
What is the primary purpose of the "Create PDF" automation shape in Pega?
To View a new PDF document.
To delete existing PDF document.
To read data from a PDF document.
To generate PDF document from case data.
What is the primary purpose of "Search Duplicate cases" step in Pega?
To Delete unresolved cases.
To identity and resolve duplicate cases.
To View unresolved cases.
To update a case.
State whether the given statement regarding Search Duplicate cases is True or False.
TRUE.
FALSE.
A case is identified as a potential duplicate when the total value of _________ meets or exceeds the threshold value.
tal value of _________ meets or exceeds the threshold value.
Basic Conditions
Weighted Conditions
A Predefined property
Search Duplicate Case
When a user decides the current case is a duplicate they can resolve it with a ___________________ status and processing of the case ends.
Resolved-Completed
Resolved-Duplicate
Resolved-Withdrawn
Resolved-Rejected
When a case enters the Search duplicate cases step, the system evaluates the ________________, to limit the number of cases that are checked as duplicates.
Basic Conditions
Weighted Conditions
A Predefined property
Search Duplicate Case
You can use a ______________ shape to add a conditional path to a flow or model more complex use cases.
Assignment
Utility
Decision
Automation
What is the purpose of the Explore Data landing page in Pega?
To modify application security settings.
To explore and analyze application data quickly.
To develop new case types.
To configure user roles.
Where can you find the list of previously created Insights?
In the User Preferences tab
In the Case Type settings
In the Explore Data landing page
In the System Logs
What is the purpose of a table-based Insight?
To display a data query in table format.
To create new case types.
To configure user authentication.
To manage database indexes.
What is the primary function of a chart-based Insight?
To create new UI components.
To modify user access permissions.
To store login credentials.
To visualize data queries using charts.
How can you modify a chart-based Insight?
By selecting a previously created chart-based Insight.
By changing the system kernel settings.
By modifying HTML files.
By disabling all filters.
What does a simple value chart display?
A detailed security log
A high-level summary of data
A list of failed authentication attempts
A breakdown of user permissions
What is required to configure a simple value chart?
Writing custom Java code
Modifying system permissions
Selecting fields in the Measures area
Running SQL queries manually
Which actions can be performed on the Explore Data landing page? (Choose Three)
Query data
Modify system security settings
Group data
Develop new UI components
Sort and Filter data
Match the following types of insights with their purpose: A. Table-based Insight B. Chart-based Insight C. Simple value chart 1. Visualize data using charts like bar graphs. 2. Provide a high-level summary of key data points. 3. Display query results in tabular format.
A→2, B→1, C→3
A→3, B→1, C→2
A→3, B→2, C→1
A→1, B→2, C→3
A __________ is the business representation of a type of user.
Persona
Channel
Access Group
Work Queue
Which of the following is the default persona created by Pega when an application is created?
Users
Managers
Admins
Workers
State which statement is true related to user and persona in Pega platform Statement A: Each Persona created in App Studio has an associated role but not every role has an associated Persona.Statement B: A user is an individual who interacts with an application.
Only Statement A is true.
Only Statement B is true.
Both the statements are false.
Both the statements are true.
The various ways a user can interact with a Pega application are also known as _________.
Channel Interface
Persona Interface
Case Worker interface
Manager Interface
Which of the following options are the best examples of a Channel interface?(Choose two)
Web Portal
UI element
Mobile
Persona
Match the following options with their purpose:A)Channel interfaceB)PersonaC)User1)An individual who interacts with an application.2)The business representation of a type of user.3)Refers to the various ways users can interact with an application.
A-> 1, B-> 2, C-> 3
A->3, B-> 2, C->1
A-> 3, B-> 1, C-> 2
A-> 2, B-> 3, C-> 1
A bank is launching a Pega-based loan application system. Customers can apply for loans via a web portal, a mobile app for application status updates, and customer support via email. Which Pega channel interfaces should the bank configure to support these interactions?
Web, API, Case Management
Web Portal, Mobile, Email
IVR, Chatbot, Database Integration
Embedded UI, REST API, Data Pages
Amar is creating a healthcare application, where patients and doctors must be able to perform different Tasks. Patients can check records and schedule appointments. Doctors can review patient records, record prescriptions, and add follow-up comments for patients after office visits. Which is the most appropriate way to create Persona for this requirement?
Define separate personas for patients and doctors to ensure that users with the appropriate persona can access the correct channel interface and relevant application features.
Create a single persona for both patients and doctors and configure different channel interfaces based on their roles.
Use the default persona provided by Pega without creating any separate personas.
Create two user accounts, one for the patient and one for the doctor, and assign both to the default persona created by Pega.
Dave is a territory manager for InsCorp. Dave manages relationships with repair facilities, which provide estimates for covered vehicles in an insurance claim. Dave needs to create Cases to add repair facilities to the repair network maintained by InsCorp. Dave also spends 50% of his month out of the office traveling. He prefers to use a tablet when using the application. Which configurations must be done to achieve this requirement?
Configure a dashboard to provide an overview of repair facility cases and relevant data.
A mobile channel to use while traveling.
A work queue to maintain the repair cases.
A work group for repair facility team.
Which of the following statement is true regarding skipping a stage or process ? Statement A: By default, a Stage never skips unless a condition is present. Statement B: By default, a Process always starts unless a condition is present.
Only Statement A is true.
Only Statement B is true.
Both statements are incorrect.
Both statements are correct.
In a patient admission case, hospitals assign a hospital room, medical equipment, and meal plan in the Inpatient Setup stage. However, if a patient is admitted for an outpatient procedure, they do not require a hospital room or meal plan. How should you configure the Case Life Cycle to reflect this behavior?
Configure the Room Assignment process to start only if the patient is an inpatient. Otherwise, the process is skipped.
Configure the Meal Plan Setup process to start only if the patient is an outpatient. Otherwise, the process is skipped.
Configure the Inpatient Setup stage to be skipped if the patient is an outpatient. Otherwise, the stage starts.
Configure the Medical Equipment Setup process to be skipped if the patient is an inpatient. Otherwise, the process starts.
In Pega, when configuring a case life cycle, under what condition can a stage or process be skipped automatically?
A process can only be skipped if a stage is also skipped.
A stage or process is skipped when a defined condition evaluates to true at runtime.
A stage can only be skipped if all its processes are completed.
A process within a stage cannot be skipped once the stage starts.
In a loan application, you need to create views for the Secondary Applicant Details step to collect information such as name, relationship to the primary applicant, and income details from the applicant. Additionally, the collected details should be displayed as read-only in the Eligibility Check Details step.In Pega Constellation, how would you configure the views?
Create a Form View to collect secondary applicant details and a Partial View to display the collected details as read-only in the Eligibility Check step.
Create a List View for both steps.
Create a Partial view for both steps.
Create a full page view for both steps.
You need to create a View in a loan application system that displays all loan requests, sorted by the loan amount in descending order. The view should allow users to easily see and access requests with the highest loan amounts first. Which type of view would you use to implement this requirement?
Form Views
List View
Partial View
Section
Which of the following is NOT a valid use case for a List View in Pega?
Displaying a list of pending loan applications.
Retrieving and displaying
