Validation Flashcards

1
Q

Validation: What are different methods of validation?

A

Property Data Type, Controls Validation Rules

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Validation: What do you need to consider when validating data using a control?

A

1) The control type
2) Required?
3) Edit-ability

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Validation: What are use case examples of validation using controls?

A

1) Validate format
2) Restrict Values
3) Filter options
4) Using bool yes no

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Validation: What is the purpose of a validation rule?

A

Ensure input conforms to business policy

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Validation: What are the steps involved in creating a validation rule?

A

1) Define the rule

2) Apply rule to flow action

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Validation: What are the part of a validation rule?

A

1) Message - what to tell user if validation fails
2) Field - to test
3) Comparator - test to perform
4) Value - comparison value

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Validation: What is the purpose of an edit validate rule?

A

Validate based on pattern matching

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Validation: When should you use a standard validate rule vs an edit validate rule?

A

1) Standard validate - single value comparisons

2) Edit validate - multiple conditions, complex conditions, custom java procedure

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Which validation rule would be appropriate for checking that a user enters a date in the future for scheduling a home inspection?

A

1) Validate rule because it is single value comparison

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

You have added fields for entering the name and address of a loan applicant. What validation method would you use?

A

A text field

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Where do you configure a validate or edit validate rule in Pega?

A

1) Validate rule - App Studio> Case Step>Configure View>Conditions Tab
2) Edit Validate Rule -Dev Studio> App Explorer > Case Type > Process > Validate > Create New

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How would you configure a field in which a user selects on of four possible shipping methods?

A

Pick List or Radio Button

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

When would you use the required fields validation approach?

A

When information is required to move to the next step

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How would you ensure that a user always enters 20 characters?

A

Set min and max length to 20

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Validate Rules enable you to use a single property when____________

A

values required are based on business logicq

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Why must a validation condition that tests whether a date is in the future or the past be configured in Dev Studio?

A

Requires use of function

17
Q

Validation: When should you use custom java code for an edit validate rule?

A

When there is no pega function available