Sei sulla pagina 1di 79

HOME

INTERVIEW QUESTIONS
GD TOPICS
ABOUT US
Contact US
Privacy Policy
TERMS & C

NAVIGATION
Enter search keywords here …

HOME » Pega Interview Questions » 120 REAL TIME PEGA-PRPC Interview Questions and Answers

120 REAL TIME PEGA-PRPC Interview Questions


and Answers

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
AdChoices List of 120 top pega interview questions and answers for freshers beginners and
experienced pdf free download.most frequently asked questions with answers.
Textbook PDF

3rd Edition PDF Pega Interview Questions And Answers:-


1.What is the difference between Page-Validate and Property-Validate methods?

2.What is difference between Edit validate and Edit Input rules?

3.Where assignments will be stored in pega rules database?

Pega Interview Questions And


Answers

4.Where work objects will be stored ?

5.If I have 3 different work objects in my application, how to store them in three different tables?

6.What is StepStatusGood, StepStatusFail rules?


PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
7. How to make any rule as a favorite to your manager

8. Where can i see the paramater values in the clipboard ( values ..) i am passing one activity to other .

9. How to import rules using pzinskey

10. Difference between activity and utility

11. Difference between obj-open and obj-open-by-handled

12. Inheritance concept in the pega (rules, class)

13. Performance of our work in the pega is measured using?

14. How to connect to different pega applications?

15. How to store the instance of the class in a specific database

16. Difference between obj-list, rdb-list?

17. How to see values of the local variables of the activity.

18. How can i store the instance of the class in the data base

19. default data table where the instance of the class are store (how it will search ) pc_work

20. In Routing activity what is the default property used to route the object

21. In routing activity if i use workbasket name instead of work list name .. when can i know it is wrong (run time,
complile time)

22. Notify
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
23. ticket: explain any senarion u used

24. table used for add note

25. Default activity used to create work object

26. Different type of flows. Explain in scenario based where u used and worked

27. work object ID.. how to create.. activites ued to create, or methods Work ID:

28. how to send multiple correspondences at a time

29. How to call an Activity from Java Script?

30. how to end the workobject in the activity ( method used to kill the work object)

31. how to call an activity from the java, java script

32. How to pass parameters to the activity using the java, JavaScript?

33. How can I pass page as the parameter to the activity using java, JavaScript?

34. How to call an Activity from Java step?

35. How to get a property value from clipboard using Java step?

36. How to restrict the harness, section to particular user

37. List different functions used to call an activity from java script.

38. How a user’s ruleset list is formed ( the logic )?


PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
39. How to connect external java application without using connect-java

40. Spinoff // split join explain

41. Privileges usage…

42. Decision / fork usage… Scenarios Decision:

43. How to expose the column in the blob… of the database

44. Explain The various standard attachments PRPC supports are

45. Explain Some of the important property streams are

46. Explain How does the user validation works for properties in PRPC

47. What are the different parsing mechanisms are available in PRPC?

48. Concentrate on required fields of every rule (Rule that you are familiar with )

49. Tell me about inheritance In PRPC?

50. Explain How to create pz, px, py properties?

PEGA Interview Questions & Answers – :-

51. What type of Reporting features are provided by Pega?


A. List View and Summary View

52. What is the difference between ListView and SummaryView ?


A summary view rule defines a two-level report display, presenting summary counts, totals or averages to be
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
isplayed initially, and allowing users to click a row to drill down to supporting detail for that row.
Summary view rules support interactive charts, trend reports, and the use of AJAX for pop-up Smart Info windows.
A summary view rule is an instance of the Rule-Obj-SummaryView rule type. This rule type is part of the Reports
category.
A list view rule, an instance of the Rule-Obj-ListView rule type, defines a report. Users can personalize list view
reports easily and interact with them.
Use the Report wizard to define list view reports and link them to our portal.

53. How to call a listview from an Activity?


In an activity, the Obj-List-View can execute a list view rule.

54. What is Paging in a listview?


To divide the ListView in to different pages and set the number of records to be displayed in a page.

55. What is exposing a property?


Exposing a property means to make a property as a separate independent column so that it can be used in sql
queries and as a criteria in reporting.
Steps are as follows,

56. How to expose a single value property?


Process Commander stores the values of all aggregate properties and some Single Value properties in a BLOB
column (the Storage Stream) usually in a compressed form. Such properties cannot support selection in list view and
summary view reports, and can slow retrieval and processing in other operations
1. Select Tools > Database > Modify Database Schema.
2. A list of databases identified in Database data instances appears. Select a database and click Next .
3. A list of tables in the selected database appears from Database Table instances. Select a table.
4. Click Explore Columns .
5. The resulting List of Classes window displays the number of rows in the table, the number of columns in the table
and a list of the classes assigned to that table. The Properties Set to Be Visible value counts the properties for
which the Column Inclusion value is Required or Recommended. This Column Inclusion value is advisory, and does
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
not indicate whether the property is exposed — corresponds to a column. The Count column shows the total count of
properties in this class plus those its parent classes.
6. To see the columns currently defined in this table, click the numeric link labeled Number of columns in this table.
7. The List of Database Columns window shows the column name, column data type, and column width in bytes for
each column in the table.

57. How to expose aggregate property?


Declare Index rule is a better approach.
1. Create a concrete class derived from the Index- base class.
2. Create Single Value properties in the new class to hold values of the embedded values.
3. Create a Declare Index rule with the appropriate embedded Page Context value that copies the embedded
values into a new Index- instance.
4. Save the Declare Index rule. It executes immediately, adding and deleting instances of the new class.
5. Expose database columns corresponding to the Index- class.
6. Reference the Index- properties in the list view rule.

58. Can we refer the property without exposing in Reports?


We can refer the propertys in Display tab without exposing.
But we can’t refer the property without exposing in Critera fields of the Content tab.

59. What is the activity responsible for getting the data in List View?
getContent Activity

60. What the class of getContent Activity?


Embed-ListParams class.

61. Can or have you customize the getContent Activity?


Yes

62. How to customize the getContent Activity?

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Step1: Create Activity in Our Class and create the New page
Step2: write a query and store in variable.
Step3: call the listview as Call Rule-Obj-ListView
Step4: Write the another activity in Embed-ListParams
Step5: create the parameter. This parameter get the sql query from previous activity
Step6: write Java method The java code in this method is
Get the page from pyContentPage if page already exists. If page is not available it creates the new ContentPage.
In this code get the sql query from the above parameter and pass this query and above created ContentPage as
parameters to this tools.getDatabase().executeRDB(query, pagename) method.

63. How do we get the data from the two different tables?
Using Join tab in Reports

64. How do we fetch the data from two different tables with out using two different tables?
Write a database View. In this view logically combine the Two different tables.
Create class for this logically combined Table.
Write the List View. Applies to class is class of the Combined table. So we can refer the properties of both the
tables in list view.

65. What is the use of HTML property in ListView?


HTML Property rules appear in list view and summary view rules to define the appearance of values in reports.

66. Consider this scenario: I need to generate a list view report of all the work objects created on a
particular date and then I need to include this list view in a section. How this can be done?
Select .pxCreateDateTime ( an exposed property ) under criteria and give the value you are looking for.
To include it in a section, check the embedded check box and customize the HTML of the section. In that we need to
access the list view in a JSP tag or In section Property is DisplayAs ListView.

67. What is the difference between List View and Obj-List?


List view is generally used for complex queries where sorting is required and also we can retrieve less information
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
using Paging.

68. Explain in brief the configuration of a list view?


List view (an instance of Rule-Obj-ListView ) is used to define a custom report or personal version of a report.

A list view can be configured as follows:


– Applies to class of list view will be taken as the database table map for the search criteria.
– Display fields tab is used to depict the fields that are displayed along with category and to enable/disable
sorting
– Content tab is used to depict the criteria, fields to be retrieved, key of each row (if selected) and Report
source (Page name where the values should be saved and the activity to be called)
– In organize tab we specify to enable/disable paging, page size, mode, alignment etc.
We can also configure additional buttons and their fragments here.
– Format tab is used to depict the formatting of the list (like even/odd coloring) and details on single click etc.
List view can be accessed from an activity or html as follows:
– Call Rule-Obj-ListView.ShowView activity with classname and list view name as parameters
– A list view can be used for complex retrievals from database by not specifying the display, format and Organize
tabl.
PyAction in that case would perform instead of refresh.

69. Explain in brief about the configuration of a summary view?


Summary views are used to create reports which are grouped by certain criteria and can be later drilled down.
A Summary view can be configured as follows:
– Applies to class of summary view will be taken as the database table map for the search criteria
– Category is used to know under which tab the report should come.
– Criteria is used in the where class (this can be asked to user by enabling prompt user)
– Group by and field functions (like count) are used for initial display. If we have more than one group by
it is Displayed one after another on clicking +
– Drill down fields are used to display the fields when we click on the assignment.
– Format is used to tell how to format the display and charts can also be used.
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Summary view can be accessed from an activity or html as follows:
– Call Rule-Obj-ListView.ShowView activity with classname and summary view name as parameters

70. What are the Methods we have used for validations?


a. Obj-Validate–we can referred this method in Activities and in flow actions at Validate Rule field.
b. Edit-Validate—- we can refer this in property form at edit-validate field and in activities through property-validate
method.
Note: I think Obj-Validate is used for Server Side Validation and Edit-Validate is used for Client Side Validation.

71. How do you add custom message to the Property when it fails the Validation.
For this we have to use theProperty.addMessage(“your message”) tag.

72. Message is set to the property and the checked in the clipboard also , the messages got set
successfully. But the message is not displayed beside the field in the screen. Why..?
If the property has a html property, the tag <pega:include name =”Messages”/> tag must be include

73. Explain the operation of Activity-End method?


Use the Activity-End method to cause the system to End the current activity and all calling activities.
Ex:if Alpha calls Beta, which calls Gamma, which calls Delta, which performs the Activity-End method, all four
activities are ended.

74. Explain about Exit-Activity method?


The Exit-Activity method ends the current activity and returns control to the calling activity.

75. Explain about Page-Copy method?


Page-Copy method is used to copy the contents of a source clipboard page to a new or previously created
destination clipboard page. The source page is not altered.
After this method completes, the destination page contains properties copied from the source page, and can
contain additional properties from a model.

76. Explain about Page-New method?


PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
The Page-New method is used to create a page on the clipboard. The new page may be a top-level page or an
embedded page.
We can identify a model to initialize the newly created page. The model can set values for one or more properties.

77. Explain about Page-Remove method?


Page-Remove method is used to delete one or more pages from the clipboard. The contents of the database are
not affected.

78. Explain about Page-Set-Messages method?


Use the Page-Set-Messages method to add a message to a clipboard page. Like a message associated with a
property, a message associated with a page normally prevents the page from being saved into the database.

79. Explain about Property-Set-Message?


Property-Set-Message method is used to associate a text message with a property or a step page. The system
reads the appropriate property and adds the message to the page. We can provide the entire literal text of the
message, or reference a message rule key that in turn contains message text. (Rule-Message rule type).

80. Explain about Property-Map-DecisionTable method?


Use the Property-Map-DecisionTable method to evaluate a decision table rule and save the result as the value of a
property.

81. Explain about Property-Map-DecisionTree method?


The Property-Map-DecisionTree method is used to evaluate a decision tree rule (Rule-Declare-DecisionTree rule
type) and store the result as the value of a property.

82. Explain about Property-Map-Value?


The Property-Map-Value method evaluates a one-dimensional map value (Rule-Obj-MapValue rule type) defined in
the parameter. The method sets the result as a value for a Single Value property.
The related method Property-Map-ValuePair works similarly for two-dimensional map values.

83. Explain about Property-Remove method?


PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Property-Remove method is used to delete a property or properties and its associated value from the step page or
another specified page. This does not affect the property rule, its definition.

84. Explain about Property-Set method?


Property-Set method is used to set the value of one or more specified properties.

85. Explain about Show-HTML method?


The Show-HTML method is used to cause the activity to process an HTML rule and send the resulting HTML to a
user for display by Internet Explorer. This may involve the interpretation of JSP tags (or the older directives), which
can access the clipboard to obtain property values, or can insert other HTML rules, and so on.

86. Explain about Show-Page method?


The Show-Page method is used to send an XML representation of the step page to a user’s Internet Explorer
browser session, as an aid to debugging.
Note: Use Show-Page and Show-Property only for debugging.

87. What is the difference between Call and Branch?


The Call instruction calls the another specified activity and execute it. When that activity completes, control returns to
the calling activity.
Use the Branch instruction to find another specified activity and branch to it without a return.
When the system executes a Branch step, control transfers to another activity found through rule resolution.
Execution of the original activity pauses.
When the branched activity ends, processing of the current activity also ends.
No steps after the Branch step are executed.

88. Explain about Obj-List Method?


Obj-List method is used to retrieve data to the clipboard as an array of embedded pages.
This method creates one embedded page for each instance retrieved.
The Obj-List-View method often produce more efficient SQL statements and provide better performance than the
Obj-List method.
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
89. Explain about Obj-Browse method?
Obj-Browse method is used to search instances of one class and copy the entire instances, or specified properties,
to the clipboard as an array of embedded pages.
Only properties exposed as columns can be used as selection criteria. However, values of properties that are not
exposed as columns, including embedded properties, can be returned.

90. Explain about Obj-List-View method?


Obj-List-View method is used to execute the retrieval and sorting operations, but not the formatting and display
processing, of a list view rule.
The system uses rule resolution to find the list view rule and executes it, but does not produce any HTML output
display.

91. Explain about Obj-Open method?


Obj-Open method is used to open an instance stored in the PegaRULES database or in an external database linked
to an external class, and save it as a clipboard page.
The system uses the specified class and key fields to find and open the object and place its data into the specified
step page. The system searches up the class hierarchy as appropriate to find the instance. If it finds the specified
step page, the system clears any data that is on it and reuses the page. If no existing page has a name matching the
specified step page, the system creates a new page.

92. Explain about Obj-Open-By-Handle method?


Use the Obj-Open-By-Handle method only if we can determine the unique handle that permanently identifies which
instance to open. Otherwise, use the Obj-Open method.

93. Explain about Obj-Delete method?


Obj-Delete method is used to delete a database instance corresponding to a clipboard page and optionally to
delete the clipboard page too. We can cause the deletion to occur immediately, or until execution of a Commit
method.
This method can operate on objects of both internal classes (corresponding to rows in a table in the PegaRULES
database) and external classes (corresponding to rows in an external relational database).
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
The Obj-Delete method uses the class of the page to obtain the appropriate Rule-Obj-Class instance. It uses the
table name, key fields, and other aspects of the class rule to mark the instance for deletion.
We can reverse or cancel a previously executed Obj-Delete method by using the Obj-Save-Cancel method.

94. Explain about Obj-Save method?


Obj-Save method is used to save a clipboard page to the PegaRULES database or if the page belongs to an
external class save a clipboard page to an external database.
The Obj-Save method uses properties on the page to derive the internal key under which it will be saved.
This method can create a new database instance or overwrite a previous instance with that key.
We cannot save a page that is locked by another requestor.
We cannot save a page that our session does not hold a lock on (if the page belongs to a lockable class), unless the
object is new, never yet saved.
We cannot save pages of any class derived from the Code- base class or the Embed- base class. Such pages exist
only on the clipboard.

95. Explain about Commit method?


Commit method is used to commit all uncommitted database changes. This method writes all the instances
specified by one or more earlier Obj-Save methods to the PegaRULES database (for internal classes) and to
external databases (for external classes).

96. Explain about Obj-Validate method?


Obj-Validate method is used to apply a validate rule (Rule-Obj-Validate rule type) for the object identified on the
primary page or step page.
A validate rule (Rule-Obj-Validate rule type) can call edit validate rules (Rule-Edit-Validate rule type).

97. Explain about Obj-Sort method?


Obj-Sort method is used to sort the clipboard pages that are the values of a property of mode Page List.
We can specify one or more properties to sort on, and whether the sort sequence is ascending or descending for
each sort level.
Use Connect SQL rules and RDB methods only with an external database. Do not use Connect SQL rules or RDB
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
methods for the PegaRULES database(s). Because not all properties in the PegaRULES databases are distinct
database columns, use the Obj-Open and Obj-Save methods, not the RDB- methods, with the PegaRULES
database to prevent loss of data.

98. Explain about RDB-List method?


RDB-List method is used to retrieve rows from an external relational database and place the results as embedded
pages in a specified step page of classCode-Pega-List.
This method references a Connect SQL rule instance, and executes SQL statements stored in the Browse tab of
that rule instance. The search can do anything we can specify in a SQL statement, such as a SELECT
WHEREstatement. Any constraints on the returned data are in the SQL.

99. Explain about RDB-Open method?


RDB-Open method is used to retrieve a single row (record) of data from an external relational database and add the
retrieved data into a specified clipboard page as property names and values.
Use this method in conjunction with a Connect SQL rule that contains SQLSELECT or EXECUTE statements in the
Open tab. Define the SQL statements so that the database returns exactly one row.

100. Explain about RDB-Save method?


RDB-Save method is used to save the contents of a clipboard page into a row of a relational database. The system
saves the properties on the specified step page to the specified table in the database.
This method operates in conjunction with a Connect SQL rule that contains SQL statements such as INSERT,
UPDATE, and CREATE statements on the Save tab.

101. Do we need to migrate Agent Schedule to other environment?


No

102. Do we need to create Agent Schedule?


No. Agent schedules cannot be created manually.
The Agent Manager on our Process Commander system generate at least one agent schedule instance for each
agents rule.
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
By default, the Agent Manager checks for new or updated agents rule once every ten minutes.
After we create an agents rule, the Agent Manager generates one Agent Schedule instance for each node running
on your Process Commander system the next time it checks for new agents rules.

103. Who will create Data-Agent-Queue?


The Agent Manager is a master agent that gathers and caches the agent configuration information set for our system
when Process Commander starts. Then, at a regularly scheduled interval, it determines whether any new agents
rules were created during the last period. If there are new agents rules, the Agent Manager adds them to its list of
agents and generates agent schedule data instances for them for each node.

104. What is the use of Data-Agent-Queue?


When you need to modify the behavior of an agent listed in an agents rule in a locked RuleSet (any of the standard
Process Commander agents rules, for example) you do so by editing one or more of the generated

A service level rule is an instance of the Rule-Obj-ServiceLevel type. Each service level rule defines one to three
time intervals, known as goals, deadlines, and late intervals, that indicate the expected or targeted turnaround time
for the assignment, or time-to-resolve for the work object.
The goal time is the smallest time interval, the deadline time is a longer interval, and the late interval defines post-
deadline times. Each time interval is in days, hours, minutes, and seconds.

105. What are the types of SLA? Where they can be defined?
Service level rules can be associated with a work object or an assignment.
For assignments, the service level rule is referenced in the Assignment Properties panel of the assignment task.
For the overall work object, the service level rule is identified in the standard property .pySLAName, typically set up
through a model for the class. (The default value is the Default service level.)

106. How do we do Escalation?


Escalation refers to any processing within a Process Commander application that causes high-priority work objects
to become visible to users and managers and to be processed sooner rather than later.
The numeric property known as urgency determines the order that assignments for that work object appear on
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
worklists. Escalation recalculates the urgency value to reflect its age, impending due date, or explicit management
inputs.
Escalation can occur through a service level rule associated with the flow and through background processing by the
Pega-ProCom agent.

107. What are SLA’s, how are they different from Agents?
A service level rule is an instance of the Rule-Obj-ServiceLevel type. The service
level can define a goal and a deadline times for processing an assignment, and can
execute activities if the goal or the deadline is not met. This assignment-level service
level is distinct from any service level associated with the entire flow.
At runtime, an internal countdown clock (measuring the completion of the assignment
against the goal and deadline times computed from the service level rule) starts when the
assignment task is created.
An agent is a background internal requestor operating on the server. These requestors can
periodically monitor conditions and perform processing as necessary.
Most agents are defined by an Agent Queue rule (Rule-Agent-Queue), which includes a
list of the activities they perform.

108. How to implement SLA’s? Is is possible to define a SLA for the entire work object? If yes, how?

SLA’s are always associated with an assignment. Just drag a SLA shape and provide an instance of Rule-
Obj-ServiceLevel.
Yes, SLA can be defined for the entire workobject by defining it in the model.
The property for this is pySLAName.

109. How to restrict a flow to particular users?


By using privileges and when conditions under process tab of the flow instance.

1. What are the types of Flow Actions?


A flow action rule controls how users interact with work object forms to complete assignments.
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Each flow action is defined by an instance of the Rule-Obj-FlowAction rule type.
Flow actions are of two types:
Connector flow actions appear as lines on Visio presentation in the Diagram tab of a flow rule. A line exits from an
assignment shape and ends at the next task in the flow. At runtime, users choose a connector flow action, complete
the assignment, and advances the work object along the connector to the next task.
A local flow action, when selected at runtime, causes the assignment to remain open and on the current user’s work
list. Local flow actions are recorded in the Assignment Properties panel and are not visible on the Visio flow
diagram.

A local flow action permits users at runtime to update, but not complete, an assignment. Local flow actions always
are optional. Users may perform none, one, or multiple local flow actions, or repeat a local flow action multiple times.
At runtime, users choose a connector flow action, complete the assignment, and advances the work object along the
connector to the next task.

110. Explain about Pre Activity?


At runtime, the system runs this activity before it does other processing for this flow action. This activity is not visible
on the Visio flow diagram. This activity executes only once, the first time a user selects this flow action for this
assignment.

111. Explain about Post Activity?


Activity to run after other successful processing of this flow action.
For screen flow rules By default, when this flow action appears as a step in a screen flow rule, and the user at
runtime clicks away to a different step in the screen flow rule, this activity rule does not run. To cause this activity to
execute when the user clicks away to a different step, select the Post Action on Click Away? check box on the
Assignment shape properties panel.

112. Explain about Local Flow Action?


A local flow action permits users at runtime to update, but not complete, an assignment. Like connector flow actions,
local flow actions are referenced inside an assignment task in a flow.
At runtime, users can select local flow actions to update assignment or work object properties, change the assignee,
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
and so on but do not complete the assignment. If a service level rule is associated with the assignment, the service
level continues to run.
Local flow actions always are optional. Users may perform none, one, or multiple local flow actions, or repeat a local
flow action multiple times.
On the Action tab of the Flow Action form, we can mark a flow action rule as local, or connector, or both.

113. How Rule-Edit-Validate is different from Rule-Obj-Validate?


Edit Validate is to validate a single property at a time but obj validate rules are used to validate all the properties in a
single go. Obj-Validate method is used for this purpose.

114. How one single property can be represented in different forms on a screen?
By using HTML Properties at the section level, not at the property level.

115. Consider this scenario : I have a property of type decimal, I need to restrict it to two decimal places
only. How easily this can be done?
By using a qualifier “pyDecimal Precision” under Qualifiers tab.
116. How to implement dynamic select and smart prompt? What’s the major difference between them?
Implementation of Dynamic Select:

In properties panel select Display As is DynamicSelect.


Write Activity for generating Dynamic Select.
By using Show-Page method display the data in XML format.
Dynamic Select is a drop down from which we can only select a value.
Smart prompts acts both as a text box and a drop down.
Smart prompts are implemented by using ISNS_FIELDTYPE, ISNS_CLASS, ISNS_DATANODE.

117. What is the difference b/w Page and Page List property, how are they Implemented?
Page property refers to a particular class and is used to access the property of that class.
Page List Property also refers to a particular class, but it’s a collection of individual pages of the same class which
can be accessed through numeric indexes.
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
118. What is HTML Property?
HTML Property rules are instances of the Rule-HTML-Property class. They are part of the Property category.
Use HTML Property rules to control how properties appear on work object forms, correspondence, and other HTML
forms, for both display and for accepting user input.
For properties of mode Single Value an HTML Property rule may be identified in the Display Property field of the
Property rule form.
HTML Property rules also may appear in list view and summary view rules to define the appearance of values in
reports, and in harness, section, and flow action rules that define work object forms.

119. Explain about Special Properties?


Standard properties means all the properties in the Pega-RULES, Pega-IntSvcs, Pega-WB, and Pega-ProCom
RuleSets have names start with px, py, or pz.
These three prefixes are reserved. We cannot create new properties with such names. We can override these
standard properties with a custom property of the same name (without changing the mode or Type).
Px: Identifies properties that are special, meaning that the values cannot be input by user input on an HTML form.
Py: Properties with names that start with py are not special, meaning that values can be input by users on an HTML
form.
Pz: Properties with names that start with pz support internal system processing. Users cannot directly manipulate pz
properties. our application may examine these values, but do not set them. The meaning of values may change with
new product releases.
Interview Questions On VALIDATIONS In PEGA
Validation rule is used to validate the value against the some other value. Once the validation fails the system add
error message to that field in clipboard.

120. What types of validations are there?


a. Client Side Validations
b. Server Side Validations

**Semantric Space Pega Interview Questions**


PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
1.What are the fields in the properties panel of an assignment shape?

2.Where can we call the activities in a flow action?

3.What is Class structure of your Project? Explain about the project Flow?

4.What is the Rule availability?

5.What is the Final availability and how can change availability of Rule?

6.Can you Override Final rule?

7.What is the rule resolution Algorithm and can you tell me how it works or search?

8.How it works in the while in Inheritance rule?

9.Can you tell me the direct inheritance and Pattern inheritance?

10.What is the Work object?

11.Where is the work object stored?

12.Can you change the Work object table?

13.What are the standard properties?

**Wipro Pega Interview Questions**


1.What is SMA?

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
2.Differentiate Obj-Open Vs Obj-Browse

3.How do you handle exceptions

4.Differentiate the usage of Assignment Shape and Router shape

5.Where do you define default values

6.What is the primary key of pc_assign_worklist

**TCS Pega Interview Questions**


1.Difference between Java and Pega

2.Guardrails of Pega

3.What do you mean by Build for Change

4.Difference between page and pagelist

5.why we use connect-soap and can we use it to connect external database

6.why we use connect-sql

7.how many shapes you know in pega.

8.what do you mean by calculate and edit declaratively not procedurally

9.what are tickets give scenario where you used tickets

10.What are the 6 R’s

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
**IBM Pega Interview Questions**
1) What is the Flow Action? Explain about the FlowAction?
2) What is the Activity?
3) Explain Obj-open, Obj-Save?
4) What is the Model?
5) What is the Harness? Section?
6) What is Split-Join?
7) Types of inheritance?
8) What is the use of property-set Method?
9) Diff b/w Decision Table and Decision tree?
10) Declare expression and Declare constraints?

**Accenture Pega Interview Questions**

1) How do you expose a property?


2) What is the need of exposing a property?
3) About obj-open,obj-save?
4) Difference obj-list, Obj-browse?
5) rdb-open, rdb-save?
6) What is a screen flow?
7) Difference between screen flow and process flow?
8) What is Split-ForEach?
9) Difference between page and page list?
10)what is the work object?Where it is Stored?Can We Change The Table?
11)What is a class group?

PEGA-PRPC Interview Questions and Answers pdf free download ::

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
March 18, 2014 iqapdf Pega Interview Questions 202 Comments
120 TOP PEGA 7 interview Questions 120 TOP PEGA ba interview Questions 120 TOP PEGA basic interview
Questions 120 TOP PEGA bpm interview Questions 120 TOP PEGA business analyst interview Questions 120
TOP PEGA business architect interview Questions 120 TOP PEGA cba interview Questions 120 TOP PEGA clsa
interview Questions 120 TOP PEGA company interview Questions 120 TOP PEGA core java interview Questions
120 TOP PEGA cpm interview Questions 120 TOP PEGA csa interview Questions 120 TOP PEGA cssa interview
Questions 120 TOP PEGA developer interview Questions 120 TOP PEGA developer interview Questions and
answers 120 TOP PEGA experience interview Questions and answers 120 TOP PEGA india interview Questions
120 TOP PEGA integration interview Questions 120 TOP PEGA interview Questions 120 TOP PEGA interview
Questions 2015 120 TOP PEGA interview Questions 2016 120 TOP PEGA interview Questions and answers 120
TOP PEGA interview Questions and answers for accenture 120 TOP PEGA interview Questions and answers for
experienced 120 TOP PEGA interview Questions and answers for experienced pdf 120 TOP PEGA interview
Questions and answers for freshers 120 TOP PEGA interview Questions and answers pdf 120 TOP PEGA interview
Questions blogspot 120 TOP PEGA interview Questions download 120 TOP PEGA interview Questions for
accenture 120 TOP PEGA interview Questions for beginners 120 TOP PEGA interview Questions for capgemini
120 TOP PEGA interview Questions for cognizant 120 TOP PEGA interview Questions for csa 120 TOP PEGA
interview Questions for experienced 120 TOP PEGA interview Questions for freshers 120 TOP PEGA interview
Questions for hcl 120 TOP PEGA interview Questions for tcs 120 TOP PEGA interview Questions from ibm 120
TOP PEGA interview Questions in accenture 120 TOP PEGA interview Questions in cognizant 120 TOP PEGA
interview Questions java 120 TOP PEGA interview Questions on java 120 TOP PEGA interview Questions pdf 120
TOP PEGA interview Questions pdf download 120 TOP PEGA interview Questions topic wise 120 TOP PEGA
interview Questions tutor 120 TOP PEGA interview Questions with answers pdf 120 TOP PEGA latest interview
Questions 120 TOP PEGA lead system architect interview Questions 120 TOP PEGA lsa interview Questions 120
TOP PEGA project manager interview Questions 120 TOP PEGA prpc interview Questions 120 TOP PEGA prpc
interview Questions and answers 120 TOP PEGA prpc interview Questions and answers pdf free download 120
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
TOP PEGA prpc interview Questions for experienced 120 TOP PEGA prpc interview Questions pdf 120 TOP
PEGA prpc interview Questions with answers 120 TOP PEGA prpc testing interview Questions 120 TOP PEGA qa
interview Questions 120 TOP PEGA real time interview Questions 120 TOP PEGA system architect interview
Questions 120 TOP PEGA system java interview Questions 120 TOP PEGA systems interview Questions 120 TOP
PEGA tech lead interview Questions 120 TOP PEGA technical interview Questions 120 TOP PEGA testing
interview Questions 120 TOP PEGA testing interview Questions and answers pdf 120 TOP PEGA testing interview
Questions answers 120 TOP PEGA testing interview Questions with answers 120 TOP PEGA tool interview
Questions 120 TOP PEGA-PRPC Interview Questions and Answers pdf accenture interview Questions on 120 TOP
PEGA american express 120 TOP PEGA interview Questions bank of america 120 TOP PEGA interview
Questions cognizant 120 TOP PEGA interview Questions cts 120 TOP PEGA interview Questions hcl 120 TOP
PEGA interview Questions hsbc 120 TOP PEGA interview Questions igate 120 TOP PEGA interview Questions
incessant 120 TOP PEGA interview Questions incessant technologies 120 TOP PEGA interview Questions infosys
120 TOP PEGA interview Questions interview Questions in 120 TOP PEGA interview Questions on 120 TOP PEGA
interview Questions on 120 TOP PEGA prpc interview Questions on 120 TOP PEGA testing jp morgan 120 TOP
PEGA interview Questions latest 120 TOP PEGA interview Questions and answers mindtree 120 TOP PEGA
interview Questions morgan stanley 120 TOP PEGA interview Questions mphasis 120 TOP PEGA interview
Questions paypal 120 TOP PEGA interview Questions synechron 120 TOP PEGA interview Questions tcs 120 TOP
PEGA interview Questions tcs 120 TOP PEGA interview Questions and answers tech mahindra 120 TOP PEGA
interview Questions top 100 120 TOP PEGA interview Questions uhg 120 TOP PEGA interview Questions virtusa
120 TOP PEGA interview Questions wells fargo 120 TOP PEGA interview Questions wipro 120 TOP PEGA
interview Questions
← 36 RAL TIME SAP CRM Technical Interview Questions And Answers
20 REAL TIME SAP ESS MSS Interview Questions And Answers →
202 comments

1. Ramanareddy
December 20, 2016 at 2:06 pm |
Reply

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
can you pls share these Question and Answers to Suramkvz@gmail.com

2. ashok
December 14, 2016 at 7:48 am |
Reply

can send tis qstions in pdf

3. ram
November 23, 2016 at 12:00 pm |
Reply

hi please send me pega interview questions and answers

4. Srinivas
November 16, 2016 at 5:18 am |
Reply

can you please send the PDF with answers to smadireddy7@gmail.com

5. Anji
November 7, 2016 at 6:17 pm |
Reply

Hi
Any one Send Quactions and Ans PDF

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
6. nimesha
November 7, 2016 at 6:17 am |
Reply

Easy to understand and nice collection. Pls mail pdf to my mail ID nimephnix@gmail.com

7. Mukesh
November 6, 2016 at 5:53 am |
Reply

Hi, Can some one please send pdf file to me also pl. mukesh.m4k@gmail.com

8. veera
November 4, 2016 at 3:31 pm |
Reply

Hi please share pdf to me also, tnx.

9. nizamuddin
November 3, 2016 at 4:20 pm |
Reply

Excellent collection…. pls provide pdf to my mail id: nizamuddinmd416@gmail.com

10. Ravi Kiran


November 3, 2016 at 3:33 am |
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Reply

Hi Frnds,

Can someone please send the PEGA Q&A to the below mail id.
ravikiranch3@gmail.com

Thank You All.

11. Krishna Mulagiri


November 2, 2016 at 8:07 am |
Reply

Hi Frns Can u please send Interview Questions In PDF. My Mail Id ; krishna,mulagiri226@gmail.com, Thanks..

12. Ravi
October 20, 2016 at 3:16 pm |
Reply

Hi,
Please send me the latest pega interview questions to kumaarravi98@gmail.com

13. kunau
October 20, 2016 at 10:44 am |
Reply

Hi,

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Can you please send the pdf to my email Kunu.kuna2009@gmail.com

14. bhargav
October 17, 2016 at 6:34 am |
Reply

Can u send me the pdf to nvbreddy005@gmail.com

15. surya
October 12, 2016 at 10:14 am |
Reply

Hi ,

can you send the Q&A PDF to my email shashankwork1@gmail.com

16. Valavan
October 9, 2016 at 12:56 am |
Reply

Hi,
Very good collection. Can you send me the Pega Q&A PDF karikalang@yahoo.com

17. buckeye lewis


October 8, 2016 at 1:36 am |
Reply

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Hi, great work, can you please forward the qn and ans to me at buckeye7797@gmail.com?
Many thanks

18. Akhilesh Desu


October 7, 2016 at 5:42 pm |
Reply

Hi, can some one send me the pdf


akhil678@gmail.com

19. Ron
October 4, 2016 at 5:22 am |
Reply

This is great work. Can someone please forward the pdf to me at ichagani786@gmail.com
Million thanks in advance

20. Upendra
October 3, 2016 at 6:06 pm |
Reply

Hi,
Please mail me the Q&A to upendrai0576@gmail.com
Thanks
Upendra.

21. Pranavi
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
October 3, 2016 at 7:41 am |
Reply

Hi,
Please mail the Q&A in Pdf format to pranavi.k.pega@gmail.com

Thanks in advance….

22. Prabhat Yasangi


October 2, 2016 at 5:04 pm |
Reply

Please mail the Q&A in pdf format to yasangip92@gamil.com

23. chenna
September 30, 2016 at 10:26 am |
Reply

can you please email Q&A to chenna2319@yahoo.com

24. jithendra mathi


September 26, 2016 at 9:28 am |
Reply

hi, Can u please send the above pdf to itsjithendra@gmail.com

25. Ramchander
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
September 26, 2016 at 5:09 am |
Reply

Hi , Can you please Send to this Id konekotiram@gmail.com

26. vinay
September 21, 2016 at 6:52 pm |
Reply

Hi can you please send to alli.vinaykumar@gmail.com

27. santosh
September 19, 2016 at 4:34 pm |
Reply

Can you just please mail me these questions as pdf. Thank you

28. Sushmita
September 19, 2016 at 11:58 am |
Reply

can somebody please send me PDF to sushmita87@hotmail.com??

29. krishna
September 14, 2016 at 12:19 pm |
Reply

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
really good

30. Ramesh venti


September 12, 2016 at 5:33 pm |
Reply

Hello, Really very good & excellent collection, I appreciate the author for this work. Could you please send your
collection to my ID- Ramesh.560@gmail.com
Thank you.

31. Venkat Reddy Maram


September 8, 2016 at 5:13 pm |
Reply

Hi,
Its really a very good collection of questions. Its really helpful for interview purpose. If you dont mind could u
please send me the pdf of Qestions and Answers.
Email: venkatmaram2744@gmail.com

Thank you.

32. Chaithra
September 7, 2016 at 5:37 am |
Reply

Very good collection of questions with precise answers. Really helpful and handy for refreshing the concepts.
Thanks a lot for this collection!
Coudl you please send me the pdf for my e-mail id: chaithracm@gmail.com
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
33. Chaithra
September 7, 2016 at 5:34 am |
Reply

Hi All,
Could anybody send me the questions and answers for pega interview to my e-mail id:
chaithracm@gmail.com

34. venkat
September 5, 2016 at 1:48 pm |
Reply

hello guys,can anybody please send pega intervew q&a to my email:venkateswarch99@gmail.com

35. emma
August 31, 2016 at 10:07 am |
Reply

Hello, very nice collection, can you please send me Q&A to my mail: emmakelly2020@gmail.com

thank you

36. gurprit
August 30, 2016 at 1:35 pm |
Reply

Very Nice Collection. Please send the pdf to gurpritsoni@gmail.com


PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Thank you very much.

37. Ram
August 29, 2016 at 6:48 am |
Reply

Hi ,

Can someone please send me the Q&A to thummalaramanji@gmail.com

Thanks in advance.

38. Koteswararao Moka


August 27, 2016 at 5:22 pm |
Reply

Can u please send pega questions in my mail:koteswararao.moka@gmail.com

39. Sirisha
August 24, 2016 at 1:15 pm |
Reply

Excellent collection can you please send Q&A to my email.


pntlsrsh@gmail.com

Thanks in advance.

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
40. surendra
August 24, 2016 at 11:00 am |
Reply

surendra@
send me pega Interview QA’s to my mail id please…\
my mail id suri8080@gmail.com

41. surendra
August 24, 2016 at 10:59 am |
Reply

surendra@
can u send me pega QA’s please..

42. Somu K
August 24, 2016 at 6:48 am |
Reply

super collection pls send me to this :ksomus246@gmail.com

43. Ram Kumar


August 23, 2016 at 2:49 pm |
Reply

Can you please send me this QA’s to my mail id : ramkumar.1063925@gmail.com


Thanks in advance.
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
44. pavan
August 22, 2016 at 6:32 am |
Reply

Hello
can you send me questions pdf to my mail?
pavangrp3@gmail.com

45. Kireeti
August 19, 2016 at 7:33 am |
Reply

Hello,
Good collection of questions.Can u send me PDF to this mail kireetigoud96@gmail.com

Thanks in advance:)

46. Arun
August 18, 2016 at 6:27 am |
Reply

Hi pls Send me the Q& A to my mail ID.

47. Arun
August 18, 2016 at 6:22 am |
Reply

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Hi I am Arun could you send this Q&A to my mail iD :carunkumar0492@gmail.com

48. arun kumar


August 17, 2016 at 3:21 pm |
Reply

hi am arun can u please send me the real time question and answers on pega
arunkumardr88@gmail.com

49. Shweta
August 17, 2016 at 11:07 am |
Reply

Could u please send me the answers as well.Thanks in advance


below is my id:hosur.tanvi@gmail.com

50. ramani
August 17, 2016 at 8:18 am |
Reply

Very good collection will you send questions and answers for pega to ramani.nagireddy@gmail.com

51. Manoj
August 17, 2016 at 2:51 am |
Reply

Hi ,
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Can you please share pdf to 1manoj123.123@gmail.com

52. Vamsi
August 16, 2016 at 6:17 pm |
Reply

Hi ,

very good collection of Questions,can you please send me the PDF @ Vamsikrishna.konda@yahoo.com

53. Mahesh
August 14, 2016 at 7:52 am |
Reply

can you send it to smr_friend@rediffmail.com

54. nagarjun
August 12, 2016 at 4:27 pm |
Reply

plz can any one this questions and answers to my mail id-nag.vangeti@gmail.com

55. Tanya
August 10, 2016 at 12:11 pm |
Reply

The questions are really good and the answers given are easy to understand.
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Can you please send me the document with questions and answers at prakashtania@gmail.com
It will be very helpful.Thanks in advance..

56. Hanu
August 9, 2016 at 4:35 pm |
Reply

Hi,
Good Collection. Can you pls send to me.
Email- hanu3218@gmail.com

57. Ganesh
August 8, 2016 at 10:56 am |
Reply

Hi ,
Good collection,it will help full for me. Please share the pdf to my mail id:- ganeshkumar1503@gmail.com

58. shravan
August 8, 2016 at 8:15 am |
Reply

Hi,
Good collection, it will be help full for us, please share the PDF with us please.
shravan.kotagiri@gmail.com
Shravan

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
59. Vivek
August 7, 2016 at 6:28 am |
Reply

Hi,

Good collection of questions can you pleas send me to my mail id:


vivekbr1993@gmail.com

Thanks in Advance

60. yogesh
August 6, 2016 at 2:02 am |
Reply

please forward questions and answers to me as well…thanks for the initiative. yswankhede@gmail.com …
thanks in advance

61. sahithi
August 4, 2016 at 3:42 am |
Reply

please forward to me sahithi.kilaparthi@gmail.com

62. siva
August 3, 2016 at 8:16 am |
Reply
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
hai this most useful pls send questions and answers pls sen pdf to my mail sivamouni99@gmail.com

63. Arijit
August 3, 2016 at 4:43 am |
Reply

Gr8 collection..Can u plz send the Q&A pdf to my id chaudhury.arijit@gmail.com

64. KARTHIK ANAND


August 1, 2016 at 6:23 pm |
Reply

Gr8 collection..Can u plz send the pdf to my id karthik.pega4u@gmail.com

65. vsr
July 31, 2016 at 5:31 pm |
Reply

Can you please send this pdf with answer to this id write2vsr@gmail.com

66. khaja
July 28, 2016 at 9:27 am |
Reply

Hi Please send the pdf to my mailid.


skhaja46@gmail.com

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
67. Sunil
July 24, 2016 at 3:19 pm |
Reply

Hi

Anyone please share the PDF with me please.. Thanks in advance…

Mail ID – Sunil.boyina@gmail.com

68. Sunil
July 24, 2016 at 3:17 pm |
Reply

Hi

Anyone please share the PDF with me please.. Thanks in advance…

69. Naveen
July 24, 2016 at 2:14 pm |
Reply

Can you please send this pdf with answer to this id naveendurai11@gmail.com

70. ananth
July 24, 2016 at 8:51 am |
Reply
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
please send some one pdf with answers to my mail id culvamsi@gmail.com

71. Afzal
July 22, 2016 at 3:06 am |
Reply

Hey everyone, kindly share the document with me at afzaltalk@gmail.com. It would be great help. Thanks in
advance.

72. Om
July 21, 2016 at 7:23 am |
Reply

Anyone please send me the pdf to my email id.


kumawat9587@gmail.com

73. hemanth
July 20, 2016 at 4:23 pm |
Reply

Hi Guo ys,

thanks a lot for the collection, Please send me the pdf to my email id
hemanthraju.m1991@gmail.com

74. Chidhvillas
July 20, 2016 at 3:05 am |
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Reply

Hi bro…gud collection of questions…can u please send me the q/a PDF to my mail..as I have placement on
25 July 2016..pega is going to recruit us ….

Please please send me..it vl help me a lot

kantesrikanth@gmail.com

75. Priya
July 19, 2016 at 9:27 am |
Reply

Can you please send this pdf with answer to this id priyab.014@gmail.com

Thanks,
Priya

76. aravind M
July 19, 2016 at 1:33 am |
Reply

Hello, Im really interested in knowing answering of these questions.


Could you please share them ? makaravind11195@gmail.com
thank you

77. Riyaz
July 17, 2016 at 10:20 am |
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Reply

Request you kindly share the PDF to my mail id.

78. syed jafer mohiddin


July 15, 2016 at 5:17 am |
Reply

Request you kindly share the PDF to my ID.


jafer.mohiddin9@gmail.com

79. Sandeep
July 14, 2016 at 7:23 am |
Reply

Hi,
Nice questions posted and these can help the people attending interviews.
Can you please send me answers to sandeep.venkat1988@gmail.com.
Thanks in Advance.

80. priyanka
July 14, 2016 at 12:46 am |
Reply

can you send me pega questn nd ans


Thankyou

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
81. surendra
July 12, 2016 at 5:48 am |
Reply

Hi,
Really good qsns,
Can you sende me pega qsn&and toy mail id.
suri8080@gmil.com

82. vasu
July 12, 2016 at 4:09 am |
Reply

hi its very easy to understand can any one send the pdf to my mail id: vasumathirao.m@gmail.com

83. sandya
July 11, 2016 at 6:01 pm |
Reply

hi can you please send to my email sandya0308@gmail.com

84. powlomi
July 11, 2016 at 4:06 pm |
Reply

hey can u send me the questions and answers to my mail powlomil@gmail.com

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
85. Mayank
July 11, 2016 at 11:58 am |
Reply

Could you please send the document with answers to me. Appreciate your help.
email: mayank.saxena0812@gmail.com

86. parusharam
July 11, 2016 at 9:33 am |
Reply

Hi sir,
This collections is too good. can you send me the pdf file it is helpful to me. My Mail id:
ram5chinnagoud@gmail.com
Thank you sir

87. Sunil
July 10, 2016 at 4:00 am |
Reply

Can you please send me the pdf as well as it looks excellent? Nice Job
My mail id: chsunil1306@gmail.com

88. uday
July 9, 2016 at 3:35 pm |
Reply

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Hi .. Could you please send PEGA Q&A PDF to my mail id

udayreddy1231@gmail.com

89. Shivangi Tongare


July 8, 2016 at 9:56 am |
Reply

Hi,
Can u pls send me the answer to my mail Id.. Btw superb Collection !!

Id: shivangitongare005@gmail.com

90. Shivangi Tongare


July 8, 2016 at 9:55 am |
Reply

Hi,
Can u pls send me the answer to my mail Id.. Btw superb Collection !!

91. Koundinya
July 7, 2016 at 2:05 pm |
Reply

hi.. could you send me the PEGA Q&A PDF to my mail.id


koundinya.behara91@gmail.com

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
92. Ravi
July 5, 2016 at 5:19 am |
Reply

Can anyone send me the Q&A PDF to my mail id ‘vrkraju29@gmail.com’

Thanks in advance.

93. venu
July 5, 2016 at 1:09 am |
Reply

hello sir could you send me answers please venu0557@gmail.com

94. Rahul
July 4, 2016 at 7:21 am |
Reply

Hi,

Can you please share this Q & A Pdf to my mail id : rahulkhandelwal2193@gmail.com

95. Unknown
July 3, 2016 at 1:07 pm |
Reply

Can you please forward me the pdf to manip.4948@gmail.com. Thank you.


PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
96. Srinivas
June 30, 2016 at 8:44 am |
Reply

Very good collection.. can someone please send Q&A PDF to my mail ID
mailto.vaasu111@gmail.com

Thanks so much!!

97. Hari Krishna


June 29, 2016 at 4:05 pm |
Reply

Can some one please provide md Q & A to my mail id


harikrishna418@gmail.com

98. priya
June 28, 2016 at 10:51 am |
Reply

Can someone plz send to prikss.18@gmail.com

99. Gohila
June 28, 2016 at 8:26 am |
Reply

Nice collection..Can you please provide me Q&A to my mail id..


PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Thanks in advance:-)

100. ram
June 28, 2016 at 6:15 am |
Reply

Plz send me questions and answers to my mail sajjaleelaram@gmail.com


thanks in advance.

101. Sathya S
June 28, 2016 at 5:24 am |
Reply

Hi,
Please send me the question & Answers PDF to my email id sathya.srini28@gmail.com

102. Rajni
June 27, 2016 at 5:36 am |
Reply

Hi, Please send me the pega interview questions answers to rajni.ims@gmail.com.


thank you.

103. Harsha
June 27, 2016 at 3:57 am |
Reply

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Kindly share answers to above questions to bhima.harsha@gmail.com

104. Ravikiran
June 25, 2016 at 5:56 pm |
Reply

Hi All!
Kindly some one share the collection of important questions. If possible, please send a copy to
raviandkiranpega.gmail.com

105. Radhakrishnan Rajendran


June 25, 2016 at 6:14 am |
Reply

Hi,
Please send the question and answers PDF to my email id Krishmba06@gmail.com

106. srinu
June 25, 2016 at 4:08 am |
Reply

Hi great collection… Can you please send to answers my mail Id srinu.pega123@gmail.com

107. srinu
June 25, 2016 at 4:06 am |
Reply

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Hi great collection… Can you please send to my mail Id srinu.pega123@gmail.com

108. sharma
June 24, 2016 at 10:40 am |
Reply

any one who has got please send to my mail id thanks in advance pradeepvaranasi9@gmail.com

109. Geeti
June 22, 2016 at 10:33 am |
Reply

Hi great collection… Can you please send the pdf at geeti.borgohain@gmail.com

110. Mahaboob
June 21, 2016 at 5:01 pm |
Reply

Could you please send me the Answers to my mail id >>> mabu.vali@gmail.com

111. Reshma
June 21, 2016 at 1:01 pm |
Reply

Please forward Materials for PEGA

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
112. Rajitha
June 20, 2016 at 12:26 pm |
Reply

Nice collection please forward this questions and answers pdf thanks in advance

113. shiva
June 20, 2016 at 11:01 am |
Reply

Really Very helpful. Can someone please share this to shivakumarasamchetti@gmail.com

114. vasu
June 20, 2016 at 4:58 am |
Reply

hai,very good Questions , can you plz send me the Answers TO my mail id
vasu1022@gmail.com
Thank you

115. harish
June 19, 2016 at 9:38 pm |
Reply

Hi,
Can u send question & answers to my mail
harishpeethala@gmail.com
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
116. ramana
June 18, 2016 at 5:29 pm |
Reply

Can you share the pdf for questions and answers

117. raghu
June 18, 2016 at 5:45 am |
Reply

Hi ,
Really good collection can u send quotations n answers .
Can someone please share this pdf on id:raghumay80@gmail.com

118. shashidhar
June 17, 2016 at 10:21 am |
Reply

please send this PDF to my emailid

119. Sweety
June 16, 2016 at 1:02 pm |
Reply

Really Very helpful. Can someone please share this pdf on sweety.vasanthi51@gmail.com

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
120. Vijetha
June 15, 2016 at 7:44 pm |
Reply

can someone mail qn nd ans to my mail id?


vijetakamath@yahoo.co.in

121. Neha
June 15, 2016 at 1:21 am |
Reply

can someone mail qn nd ans to my mail id?


ajaibhargava.india@gmail

122. Neha
June 15, 2016 at 1:20 am |
Reply

could you send the qs and ans to my mail id?

123. srinivasarao
June 14, 2016 at 5:58 pm |
Reply

Hi looks good!! Can you please send me too the question and answers pdf to srinivasarao509@gmail.com

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
124. Shruti Tyagi
June 14, 2016 at 11:22 am |
Reply

Hi
Can u please send me the questions and answers at shruti_tyagi30@hotmail.com.
Thanks in advance.

125. SRIKANTH MOKA


June 14, 2016 at 7:22 am |
Reply

Can anyone please send the questions and answers to my mail id : moka.srikanth@gmail.com

126. T. Himakar Reddy


June 13, 2016 at 5:18 pm |
Reply

Can anyone please send the questions and answers to my mail id : reddyhimakar@gmail.com

127. sathya reddy


June 13, 2016 at 2:23 pm |
Reply

pls send answers for the questions and pdf material to sathyareddy.sfdc@gmail.com

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
128. Subhash
June 13, 2016 at 8:07 am |
Reply

Its a nice and very helpful.pls can u send me the pdf


Subhash.bal20@gmail.com

129. Gautam
June 13, 2016 at 7:29 am |
Reply

hi iqapdf,
I would be very thankful if you can send materials to my E-mail ID:
bpmpega4@gmail.com

130. T.Ramesh
June 12, 2016 at 1:30 pm |
Reply

Send Pega materials and interview questions

131. T.Ramesh
June 12, 2016 at 1:28 pm |
Reply

Plz send me pega questions and answers.

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
132. hemalatha
June 12, 2016 at 7:54 am |
Reply

please send me as pdf to hemamedarametla@gmail.com

133. megana
June 11, 2016 at 3:32 pm |
Reply

Hi,These are good collection.Could you plz anyone send as doc to my email “”megana.vavilala@gmail.com”
Thanks in advance

134. Pratap
June 10, 2016 at 5:40 pm |
Reply

Hi, These are good collection. Could you please send as pdf to my mail rpsv87@gmail.com

135. Anusha Talasu


June 10, 2016 at 12:20 pm |
Reply

Hi,
Really good collection can u send quotations n answers to my mail id:Pega.anusha.talasu@gmail.com
Thank you

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
136. Chandra
June 8, 2016 at 6:03 pm |
Reply

Can someone send off to Chandra659@gmail.com

137. Jitender
June 8, 2016 at 4:11 pm |
Reply

can u please send me the full pdf.

lunatic.jite@gmail.com

138. ravikanth
June 8, 2016 at 2:52 pm |
Reply

Good collection can you please send me Question and Answers pdf to ravikanthdamarla.ibm@gmail.com

139. suri
June 7, 2016 at 11:46 pm |
Reply

Excellent job.. Can you please share me the pdf suresh.ev81@gmail.com

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
140. srinivas
June 7, 2016 at 6:13 am |
Reply

Excellent collection.

141. srinivas
June 7, 2016 at 6:11 am |
Reply

Can anyone please send the questions and answers to my mail id:srinivasprpc4731@gmail.com

142. bharath
June 6, 2016 at 5:58 am |
Reply

really nice can any one send to my mailid arbharath407@gmail.com..plz

143. ammadu
June 4, 2016 at 9:22 am |
Reply

Excellent collection can youplease send me Question and Answers pdf to ammadu.chinna@gmail.com

144. jkrishna
June 3, 2016 at 10:06 am |
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Reply

Excellent collection can youplease send me Question and Answers pdf to jkrishna66@gmail.com

145. Avinasha Shukla


June 1, 2016 at 12:44 pm |
Reply

Hi, it’s real good collection you have here.Can you please share the answers with me.
shukla.avinasha@gmail.com

146. nag
June 1, 2016 at 5:42 am |
Reply

Excellent collection.. Can you please email me the Questions and Answers pdf to nagendra5566@gmail.com
?

147. sai
May 31, 2016 at 10:03 pm |
Reply

Hi can i have the above questions and answers pdf to sai244197@gmail.com


thanks

148. pramodh
May 31, 2016 at 3:51 pm |
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Reply

Can you please email me the Questions and Answers pdf to pramodh235@gmail.com

149. Ganesh
May 31, 2016 at 9:20 am |
Reply

Excellent collection.. Can you please email me the Questions and Answers pdf to gan.gr80@gmail.com ?

150. Ram
May 30, 2016 at 12:26 pm |
Reply

Good collection could you please share to my mail….


Mail id: murariram470@gmail.com

151. Harish
May 30, 2016 at 5:34 am |
Reply

Can u Please send me the Real time interview questions and answers to my mail id harish.rithesh@gmail.com
. This will very helpful for me please…

152. Ravi
May 28, 2016 at 5:53 am |
Reply
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Please send me the Q&A to my mail id ravichaitanya3@gmail.com

153. Aparna
May 26, 2016 at 5:42 pm |
Reply

Could u please send me some more interview questions.Id-varaaparna@gmail.com

154. Venki
May 26, 2016 at 10:12 am |
Reply

Hi, It’s really awesome collection of imp questions, Can you please send it to my email:
venki.garlapati.ece@gmail.com
Thanks in advance

155. Pradeep
May 26, 2016 at 6:01 am |
Reply

Hi,
Really Good collection, Please send me the Answers @ pradeepreddy3335@gmail.com

Thanks in Advance ..

156. Suni
May 25, 2016 at 11:46 am |
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Reply

Could you please send me these questions and answers PDF to my email id sunilkkgl@gmail.com. It will be
great help if you send these material to me, since am looking for job change.

157. Suni
May 25, 2016 at 11:33 am |
Reply

Could you please send me these questions and answers PDF to my email id. It will be great help if you send
these material to me, since am looking for job change.

158. Ramsurendar
May 25, 2016 at 11:07 am |
Reply

Good collection of questions, easy to understand. Can you please send it to my email:
surendar.92@gmail.com
Thanks in advance

159. tilakraja
May 24, 2016 at 12:08 pm |
Reply

can you plz send me the answers to my mail_id tilakraja.999@yahoo.co.in

160. Rajesh
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
May 23, 2016 at 11:42 am |
Reply

can you please send the pdf to mailtorajeshpr@gmail.com

161. Ram
May 23, 2016 at 5:57 am |
Reply

Hi, It’s really good collection of important questions, And answers are also very easy to understand. Can you
please send it to my email: rams.kandepu@gmail.com
Thanks in advance

162. Senthil
May 22, 2016 at 9:24 am |
Reply

Kindly share the answers to senthil.pega@gmail.com

Nice collection.

163. Harish
May 21, 2016 at 3:48 pm |
Reply

kindly share the questions and answers to my mail ID kumar.harish284@gmail.com

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
164. prasad
May 19, 2016 at 8:31 am |
Reply

can you send me questions and answers set to me

165. venkat
May 18, 2016 at 6:38 am |
Reply

Hi friends .can any send me questions and answers set to me email id:makkineniinfo@gmail.com

plz

166. swathi kandula


May 16, 2016 at 6:44 am |
Reply

Hi can you please send me the pdf to kswathi53@gmail.com

167. swathi kandula


May 16, 2016 at 6:43 am |
Reply

Hi can you please send me the pdf

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
168. Praveen
May 13, 2016 at 4:57 am |
Reply

Its a really importaant ques .could u please share answer to my ID :praveen.skht442@gmail.com

169. Sagar
May 13, 2016 at 3:58 am |
Reply

can u please send the pdf to somethingsagar@gmail.com.


Thanks in advance

170. JaySai
May 10, 2016 at 6:12 am |
Reply

Good collection of important questions. could you please share the answers to jaysaivarma@gmail.com

171. Anmol
May 9, 2016 at 7:22 pm |
Reply

kindly share the questions and answers to my mail ID aanand_anmol@yahoo.co.in

172. Dilipreddy singireddy


PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
May 9, 2016 at 7:08 pm |
Reply

can you please share the answers dilip.pega22@gmail.com

173. divya
May 7, 2016 at 1:25 am |
Reply

can you please share the answers to turlapatidivyateja@gmail.com

174. Dileep
May 6, 2016 at 8:51 am |
Reply

Hi,

Could you please share answers to dileep.chemicala90@gmail.com

175. Kishore
May 5, 2016 at 11:00 pm |
Reply

Hi can you please send me the pdf shivakishore.shiva@gmail.com

176. krishna
May 5, 2016 at 1:38 pm |
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Reply

kindly share the questions and answers to my mail ID krishna3799@gmail.com

177. venkat
May 4, 2016 at 9:55 am |
Reply

Hi,
Kindly share the pdf to ramana583@yahoo.com

178. sesha
May 3, 2016 at 7:45 am |
Reply

hi,
can u pls share the answers.

179. Aman
April 30, 2016 at 9:52 am |
Reply

Hi,

Kindly share the answers to agoel2912@gmail.com

Nice collection.

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
180. Veer
April 27, 2016 at 1:52 am |
Reply

Hi,
Kindly share the PDF to vgiridi@gmail.com

181. chandu
April 26, 2016 at 11:35 am |
Reply

kindly please send the PDF to chandu.umesh@rocketmail.com

182. Aveek
April 25, 2016 at 8:40 pm |
Reply

Really great collection of important questions. If possible, please could anyone send a copy to
aveek318@gmail.com .

183. Anusha
April 23, 2016 at 4:08 am |
Reply

Kindly send pdf to my email id yarlagaddaanu05@gmail.com

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
184. divya
April 22, 2016 at 3:22 pm |
Reply

Can someone plz send to turlapatidivyateja@gmail.com

iqapdf
April 22, 2016 at 4:16 pm |
Reply

Ok divya i will send you pdf

185. suma
April 21, 2016 at 5:35 pm |
Reply

Can anyone please send the questions and answers to my mail id: psuma40@gmail.com

iqapdf
April 22, 2016 at 4:16 pm |
Reply

Ok suma i will send you pdf

Mukesh
November 6, 2016 at 5:56 am |
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Reply

Hi, Please send pdf to me also. mukesh.m4k@gmail.com

186. smaji
April 21, 2016 at 5:21 pm |
Reply

Hi looks good!! Can you please send me too the question and answers pdf to smaji08@gmail.com.
Thanks in advance

iqapdf
April 22, 2016 at 4:16 pm |
Reply

Ok smaji i will send you pdf

187. Praveen
April 21, 2016 at 5:35 am |
Reply

Can you please send me the pdf as well as it looks excellent? Nice Job Author.

iqapdf
April 22, 2016 at 4:16 pm |
Reply

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Ok Praveen i will send you pdf

chandra
June 9, 2016 at 2:13 am |
Reply

praveen if you receive send me too the same pdf with answers to my mail id chandra659@gmail.com

188. Aparna
April 20, 2016 at 8:22 pm |
Reply

hi,
its really good and the answers given are easy to understand searching for such site and finally I got it thank
you and would u plzz send pdf file to sriappu22@gmail.com

iqapdf
April 21, 2016 at 1:49 am |
Reply

Ok Aparna i will send you pdf

Arijit
August 3, 2016 at 4:45 am |
Reply

Hi, Can you kindly send me the Q&A pdf to my email id chaudhury.arijit@gmail.com
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
chandra
June 9, 2016 at 2:11 am |
Reply

please send some one pdf with answers to my mail id chandra659@gmail.com

189. Prasanna
April 7, 2016 at 9:51 am |
Reply

Hi,
Really good collection can u send quotations n answers to my mail id:Pega.prasanna3@gmail.com
Thank you

iqapdf
April 15, 2016 at 5:20 pm |
Reply

Ok prasanna i will send you now

Sriharsha
May 16, 2016 at 3:43 am |
Reply

Hi,

Can you please share the Q & A on my mail id, Gupta.Harsha@yahoo.in


PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
amer
August 11, 2016 at 9:25 am |
Reply

Hi,
Can you please send pega interview question and answers @ amer_rehaan@yahoo.com

Thanks in advance

kiran
June 29, 2016 at 10:04 am |
Reply

HI Can any body send the Question and answers to below Email ID: kanna.kk215233@gmail.com

Add Comment

Required fields are marked *. Your email address will not be published.

Comment
Name *

E-mail Address *
PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Website

Post a Question

INTERVIEW QUESTIONS ANSWERS PDF **** LIKE ***

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com
Interview Questions and Answers pdf free download for freshers experienced MCQs Real time certification basic
asked objective programming on IT & NON-IT Placement Papers FAQs

PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com

Potrebbero piacerti anche