wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Pega Application Quiz

Total questions: 77

Worksheet time: 41mins

Name
Class
Date
1.

What is a child case in Pega?

a)

A case that does not have a parent case

b)

A case that requires completion to resolve the parent case

c)

A case that can only be created manually

d)

A case that is always resolved first

2.

How can data be copied from a parent case to a child case?

a)

By creating a new parent case

b)

By deleting the parent case

c)

By manually entering the data again

d)

Through a process known as data propagation

3.

In which scenario would you typically create a child case?

a)

When different parties are involved in the work

b)

When the work can be completed in a single step

c)

When the case does not require any data

d)

When the case is not related to any other case

4.

Which automation shape in Pega is used to add a child case to a case type?

a)

Update Case

b)

Create Child Case

c)

Create case

d)

Persists Case

5.

When can a parent case resolve in relation to its child cases?

a)

As soon as the parent case is created

b)

Only after all child cases are resolved

c)

At any time regardless of child cases

d)

Only if the child cases are in progress

6.

A __________ is a case that does not have a parent case but can become a parent of other cases.

a)

Child Case

b)

Parent Case

c)

Top-Level Case

d)

Sub Case

7.

State whether the given statement regarding child cases is True or False. A parent case can create multiple child cases.

a)

TRUE

b)

FALSE

8.

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?

a)

Use a Custom condition with the expression: "DaysBetween(applicationSubmissionDate, CurrentDate) <= 5" to skip the "Credit Check" stage.

b)

Use a When condition with the expression: "DaysBetween(applicationSubmissionDate, CurrentDate) <= 5" to skip the "Credit Check" stage.

c)

Use a Custom condition with the expression: "DaysBetween(applicationSubmissionDate, CurrentDate) > 5" to skip the "Document Submission" stage.

d)

Use a When condition with the expression: "DaysBetween(applicationSubmissionDate, CurrentDate) > 5" to skip the "Document Submission" stage.

9.

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)

A->1,B->2,C->3,D->4

b)

A->4,B->3,C->2,D->1

c)

A->2,B->4,C->1,D->3

d)

A->3,B->4,C->1,D->2

10.

Which of the following statements about skipping stages and processes in Pega are true? (Choose 2)

a)

A Stage is never skipped unless a Condition is configured.

b)

A Stage is always skipped unless a Condition is configured.

c)

A process will not start unless a condition is specified.

d)

A process will always start unless a condition is specified.

11.

What is the primary purpose of a Data Transform in Pega?

a)

To delete unnecessary data

b)

To manipulate and transfer data within an application

c)

To create new UI elements

d)

To validate user inputs

12.

What is the function of the Run Data Transform Automation?

a)

It runs a selected Data Transform at runtime

b)

It creates a new case instance

c)

It exports case data to external systems

d)

It deletes outdated case data

13.

What does a post-processing Data Transform do?

a)

It executes before the Step runs

b)

It executes after the Step runs to manipulate or transfer data

c)

It runs independently of case processing

d)

It only applies to UI rules

14.

Which of the following is an example of converting data using a Data Transform?

a)

Changing text color based on a rule

b)

Generating a new case from an existing one

c)

Changing a string date ("December 4, 2021") into a date property (12/04/2021)

d)

Validating form inputs

15.

Which of the following automation step can be used to execute a Data Transform at runtime?

a)

Run Data Transform

b)

Send Email

c)

Create Case

d)

Duplicate Search

16.

Which of the following are valid uses of Data Transforms?(Choose Two)

a)

Copying data between properties

b)

Creating new case types

c)

Converting data formats

d)

Modifying security settings

17.

In App Studio, how can you apply Data Transforms? (Choose Two)

a)

By modifying the database schema

b)

By writing a JavaScript function

c)

By using the Run Data Transform Automation

d)

By configuring a pre/post-processing action

18.

What actions can a Data Transform perform? (Choose Two)

a)

Setting default values

b)

Copying the data from one property to another property

c)

Validating user authentication

d)

Prevents all data modifications

19.

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)

A→1, B→2, C→3

b)

A→2, B→3, C→1

c)

A→2, B→1, C→3

d)

A→3, B→2, C→1

20.

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?

a)

Use a Data Transform to convert the string to a date

b)

Manually input the date in the correct format

c)

Use a Decision Table to store the date

d)

Require users to enter the date in numerical format

21.

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?

a)

Require users to manually enter the billing address

b)

Configure a Data Transform in a post-processing action to copy the shipping address to the billing address

c)

Use a Decision Table to store and map shipping and billing addresses

d)

Create a separate case type to manage billing information

22.

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?

a)

Use a Decision Table to manage check-in and check-out dates

b)

Require guests to manually enter both check-in and check-out dates

c)

Use a Data Transform to set the default check-out date

d)

Add a separate step for selecting the check-out date

23.

In which situations is creating a child case beneficial in a pega application? (Choose two)

a)

To model work that different parties perform.

b)

To model work that follows different time frames.

c)

To reduce memory usages in application.

d)

To model work that is not common to multiple case type.

24.

Which features can be used to manage dependencies between a parent and child case? (Choose two)

a)

Case dependency settings.

b)

Skipping stages in the child case.

c)

Data propagation from the child case to the parent.

d)

Resolving parent case automatically.

25.

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)

A->1, B->2, C->3

b)

A->2, B->3, C->1

c)

A->3, B->1, C->2

d)

A->2, B->1, C->3

26.

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?

a)

Configure Fraud investigation and Transaction inquiry as parallel processes.

b)

Enter the Transaction data directly to the Fraud Investigation case.

c)

Populating data from one case type to another is not possible.

d)

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.

27.

Based on this scenario, identify the parent and child cases.

a)

Keep everything in a single case and use parallel assignments.

b)

Create Claims as parent casetype and Investigation and Damage Assessment as child casetypes.

c)

Use a Wait shape to delay processing until the investigation is complete.

d)

Create Investigation as parent case and damage assessment as child case.

28.

How can you configure the case types to reflect the relationship between the loan request and KYC verification?

a)

Make both loan request and KYC verification parent Case Types.

b)

Make KYC verification a parent Case Type and loan request a child Case Type.

c)

Make mortgage a parent Case Type. Make loan request and KYC verification child Case Types.

d)

Make loan request a parent Case Type and KYC verification a child Case Type.

29.

Which of the following scenarios are the best use cases for implementing child cases? (Choose two)

a)

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.

b)

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.

c)

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.

d)

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.

30.

Which of the following is the best approach to model this scenario in Pega?

a)

Use a single case with multiple assignments for each department.

b)

Use child cases for payroll processing, and training assignments.

c)

Use a subprocess for each department.

d)

Assign all tasks to a single user to coordinate them manually.

31.

How should Sharvin configure this condition in Pega?

a)

Use a When condition with the expression: Age < 50 on the Specialist Consultation stage.

b)

Use a skip condition with the expression: Age >= 50 on the Medical History Review stage.

c)

Use a Skip condition with the expression: Age < 50 on the Specialist Consultation stage.

d)

Use a Skip condition with the expression: Age < 50 on the Treatment Plan stage.

32.

What is the purpose of the pySetFieldDefaults data transform?

a)

To initialize default values for Case properties.

b)

To delete unnecessary Case fields.

c)

To prevent users from modifying data.

d)

To store user preferences.

33.

Which configuration should Jenny use to accomplish this?

a)

Update the data model in Dev Studio.

b)

Configure the pySetFieldDefaults Data Transform.

c)

Ask the user to enter the dates manually.

d)

Use an external database to fetch dates.

34.

Under what circumstances is it appropriate to use a decision table?

a)

For simple yes/no questions.

b)

When evaluating multiple conditions with various outcomes.

c)

Only for numerical calculations.

d)

When there are no conditions to evaluate.

35.

Which of the following scenario demonstrates the use of a decision table?

a)

Determining if a customer qualifies for a discount based on their purchase history.

b)

Calculating the total sales for a month.

c)

Listing all products in a catalogue.

d)

Generating a report of customer feedback.

36.

What happens if a decision table does not return a result for any of the testable rows?

a)

The Decision table returns the result of the Otherwise row.

b)

The decision table returns NULL.

c)

The decision table returns the results of First row.

d)

The decision table returns an ERROR.

37.

What is the primary purpose of a Decision Table in Pega?

a)

To create a user interface.

b)

To store data in a table format.

c)

To evaluate conditions and return an outcome.

d)

To define database schema.

38.

Which of the following are true about Decision Tables in Pega? (Choose two)

a)

Decision Tables evaluate conditions row by row.

b)

Decision Tables can be used only to evaluate nested conditions.

c)

Decision Tables can only return Boolean values.

d)

A Decision table consists of a table of Conditions and results.

39.

Which of the following options will help him configure this requirement?

a)

Decision Tree.

b)

Decision table.

c)

Declare expression.

d)

Boolean expression.

40.

Help David achieve this requirement.

a)

Use Decision table.

b)

Use Decision Tree.

c)

Use Declare Expression.

d)

Use Fork.

41.

Help Sofia implement this requirement.

a)

Sofia can use Boolean expression to achieve this requirement.

b)

Sofia can use Declare expression to achieve this requirement.

c)

Sofia can use Decision table to achieve this requirement.

d)

Sofia can use Map value rule to achieve this requirement.

42.

How can this requirement be achieved?

a)

By using a Fork condition.

b)

By using a decision table.

c)

By using a declare expression.

d)

By using a Data page.

43.

What does the "Create Case" automation shape in Pega do?

a)

Updates the current Case or all child Cases and descendants.

b)

Sends notifications to users.

c)

Creates one or more Cases from the current Case.

d)

Deletes an existing case.

44.

Which automation shape in Pega is used to generate a downloadable report from case data?

a)

Attach Content.

b)

Create a case.

c)

Generate PDF.

d)

Create PDF.

45.

Which automation shape in Pega pauses a Case until a specified condition is fulfilled, such as a timer or Case status?

a)

Wait.

b)

Persist Case.

c)

Update a Case.

d)

Change to a Stage.

46.

What is the primary purpose of the "Create PDF" automation shape in Pega?

a)

To View a new PDF document.

b)

To delete existing PDF document.

c)

To read data from a PDF document.

d)

To generate PDF document from case data.

47.

What is the primary purpose of "Search Duplicate cases" step in Pega?

a)

To Delete unresolved cases.

b)

To identity and resolve duplicate cases.

c)

To View unresolved cases.

d)

To update a case.

48.

State whether the given statement regarding Search Duplicate cases is True or False.

a)

TRUE.

b)

FALSE.

49.

A case is identified as a potential duplicate when the total value of _________ meets or exceeds the threshold value.

4 lines
50.

tal value of _________ meets or exceeds the threshold value.

a)

Basic Conditions

b)

Weighted Conditions

c)

A Predefined property

d)

Search Duplicate Case

51.

When a user decides the current case is a duplicate they can resolve it with a ___________________ status and processing of the case ends.

a)

Resolved-Completed

b)

Resolved-Duplicate

c)

Resolved-Withdrawn

d)

Resolved-Rejected

52.

When a case enters the Search duplicate cases step, the system evaluates the ________________, to limit the number of cases that are checked as duplicates.

a)

Basic Conditions

b)

Weighted Conditions

c)

A Predefined property

d)

Search Duplicate Case

53.

You can use a ______________ shape to add a conditional path to a flow or model more complex use cases.

a)

Assignment

b)

Utility

c)

Decision

d)

Automation

54.

What is the purpose of the Explore Data landing page in Pega?

a)

To modify application security settings.

b)

To explore and analyze application data quickly.

c)

To develop new case types.

d)

To configure user roles.

55.

Where can you find the list of previously created Insights?

a)

In the User Preferences tab

b)

In the Case Type settings

c)

In the Explore Data landing page

d)

In the System Logs

56.

What is the purpose of a table-based Insight?

a)

To display a data query in table format.

b)

To create new case types.

c)

To configure user authentication.

d)

To manage database indexes.

57.

What is the primary function of a chart-based Insight?

a)

To create new UI components.

b)

To modify user access permissions.

c)

To store login credentials.

d)

To visualize data queries using charts.

58.

How can you modify a chart-based Insight?

a)

By selecting a previously created chart-based Insight.

b)

By changing the system kernel settings.

c)

By modifying HTML files.

d)

By disabling all filters.

59.

What does a simple value chart display?

a)

A detailed security log

b)

A high-level summary of data

c)

A list of failed authentication attempts

d)

A breakdown of user permissions

60.

What is required to configure a simple value chart?

a)

Writing custom Java code

b)

Modifying system permissions

c)

Selecting fields in the Measures area

d)

Running SQL queries manually

61.

Which actions can be performed on the Explore Data landing page? (Choose Three)

a)

Query data

b)

Modify system security settings

c)

Group data

d)

Develop new UI components

e)

Sort and Filter data

62.

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)

A→2, B→1, C→3

b)

A→3, B→1, C→2

c)

A→3, B→2, C→1

d)

A→1, B→2, C→3

63.

A __________ is the business representation of a type of user.

a)

Persona

b)

Channel

c)

Access Group

d)

Work Queue

64.

Which of the following is the default persona created by Pega when an application is created?

a)

Users

b)

Managers

c)

Admins

d)

Workers

65.

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.

a)

Only Statement A is true.

b)

Only Statement B is true.

c)

Both the statements are false.

d)

Both the statements are true.

66.

The various ways a user can interact with a Pega application are also known as _________.

a)

Channel Interface

b)

Persona Interface

c)

Case Worker interface

d)

Manager Interface

67.

Which of the following options are the best examples of a Channel interface?(Choose two)

a)

Web Portal

b)

UI element

c)

Mobile

d)

Persona

68.

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)

A-> 1, B-> 2, C-> 3

b)

A->3, B-> 2, C->1

c)

A-> 3, B-> 1, C-> 2

d)

A-> 2, B-> 3, C-> 1

69.

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?

a)

Web, API, Case Management

b)

Web Portal, Mobile, Email

c)

IVR, Chatbot, Database Integration

d)

Embedded UI, REST API, Data Pages

70.

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?

a)

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.

b)

Create a single persona for both patients and doctors and configure different channel interfaces based on their roles.

c)

Use the default persona provided by Pega without creating any separate personas.

d)

Create two user accounts, one for the patient and one for the doctor, and assign both to the default persona created by Pega.

71.

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?

a)

Configure a dashboard to provide an overview of repair facility cases and relevant data.

b)

A mobile channel to use while traveling.

c)

A work queue to maintain the repair cases.

d)

A work group for repair facility team.

72.

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.

a)

Only Statement A is true.

b)

Only Statement B is true.

c)

Both statements are incorrect.

d)

Both statements are correct.

73.

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?

a)

Configure the Room Assignment process to start only if the patient is an inpatient. Otherwise, the process is skipped.

b)

Configure the Meal Plan Setup process to start only if the patient is an outpatient. Otherwise, the process is skipped.

c)

Configure the Inpatient Setup stage to be skipped if the patient is an outpatient. Otherwise, the stage starts.

d)

Configure the Medical Equipment Setup process to be skipped if the patient is an inpatient. Otherwise, the process starts.

74.

In Pega, when configuring a case life cycle, under what condition can a stage or process be skipped automatically?

a)

A process can only be skipped if a stage is also skipped.

b)

A stage or process is skipped when a defined condition evaluates to true at runtime.

c)

A stage can only be skipped if all its processes are completed.

d)

A process within a stage cannot be skipped once the stage starts.

75.

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?

a)

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.

b)

Create a List View for both steps.

c)

Create a Partial view for both steps.

d)

Create a full page view for both steps.

76.

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?

a)

Form Views

b)

List View

c)

Partial View

d)

Section

77.

Which of the following is NOT a valid use case for a List View in Pega?

a)

Displaying a list of pending loan applications.

b)

Retrieving and displaying