While setting up Start My Day, the user makes some changes in the Manage Applications window to prioritize and manage the applications that are configured to launch using the Start My Day functionality.

Which of the following applications does the user see on the desktop after using the Start My Day functionality?
Comprehensive and Detailed Explanation From Pega Robotics System Exact Extract:
In Pega Robot Studio, the Start My Day (SMD) functionality allows a user to define and launch all required applications at once when starting work. The configuration of these applications is performed in the Manage Applications window, where each application can be individually enabled or disabled for automatic startup.
According to the Pega Robotics System Design and Implementation Guide, in the section ''Start My Day Configuration and Manage Applications'', the documentation specifies the following:
''Applications configured for Start My Day will launch automatically when the Start My Day feature is invoked.
The Manage Applications dialog lists all project applications and determines which ones are launched using the 'Enabled' checkbox.
Only applications marked as enabled will be started when the user initiates Start My Day. Applications that are listed but not enabled remain closed.''
The screenshot in the question shows the following configuration under the Manage Applications window:
Application
Enabled
Type
Path
Pega Finance
Yes
Adapter
C:\Users\Pega Training\Desktop\BankerInsight...
BankerInsight
Yes
Adapter
C:\Program Files (x86)\CRM Setup\CRM.exe
CRM
No
Exe
C:\Program Files (x86)\CRM Setup\CRM.exe
Notepad
Yes
Exe
C:\Windows\notepad.exe
From this configuration, the Enabled column indicates that the following applications will start automatically when Start My Day is triggered:
Pega Finance
BankerInsight
Notepad
The CRM application is not enabled and therefore will not launch.
Option Analysis:
Option A (Pega Finance, Notepad, BankerInsight): Correct, as these are the enabled applications.
Option B (CRM, BankerInsight): Incorrect, because CRM is not enabled.
Option C (CRM, Notepad, BankerInsight): Incorrect, because CRM is not enabled.
Option D (Pega Finance, CRM, Notepad, BankerInsight): Incorrect, because CRM is not enabled.
Therefore, the correct answer is A. Pega Finance, Notepad, BankerInsight.
Extracted and verified from Pega Robotics System Design and Implementation Guide, Start My Day (SMD) Configuration and Application Management section (Pega Robotics 19.1 and later).
Which project property setting do you set to True to automatically adjust the version numbering when deploying a project?
A. Environment Overrides B. Version field C. Description field D. Increase Deployment Version
Comprehensive and Detailed Explanation From Pega Robotics System Exact Extract:
In Pega Robot Studio, the Increase Deployment Version property in the project settings is used to automatically update the deployment version number each time the project is deployed. This ensures version consistency across builds and deployments in environments managed by Pega Robot Manager.
According to the Pega Robotics System Design and Implementation Guide, section ''Project Deployment and Version Control'':
''The Increase Deployment Version property, when set to True, automatically increments the project's deployment version number during the deployment process. This feature helps maintain proper version tracking and eliminates the need for manual version adjustments before deployment.''
Detailed Reasoning:
When developing automations and robotic projects for use with Pega applications, there are recommended design specifics and considerations for the developer. Of the options below, which three are recommended developer considerations? (Choose Three)
Comprehensive and Detailed Explanation From Pega Robotics System Exact Extract:
When building robotic automations intended for integration with Pega Platform (through Robotic Desktop Automation (RDA) or Robotic Process Automation (RPA)), Pega Systems outlines a set of best practices to ensure reliable execution, data consistency, and seamless communication between the automation and Pega case workflows.
According to the Pega Robotics System Design and Implementation Guide, in the section ''Developing Robot Activities for Pega Integration'', the following recommendations are provided:
''When developing automations intended for execution by Pega applications, adhere to the following guidelines:
Always return a valid completion status from the automation to indicate success or failure to the calling Pega activity.
Ensure that the data exchanged between Pega Platform and the automation matches in both type and format to prevent runtime errors or data transformation issues.
The activity name in Pega Platform (as specified in the robotic automation name field) must exactly match the name defined in the Robot Activity component in Robot Studio to establish a valid invocation link.''
Detailed Reasoning:
A . Set valid completion status.
Correct. Each automation that is invoked from Pega must return a valid completion status (e.g., Success, Fail, Completed, Error). This status is sent back through the Robot Activity response data transform.
This ensures that the Pega case or data page correctly interprets the automation's result and can take subsequent actions (e.g., proceed, retry, or raise an exception).
D . Ensure data formats agree between the automation and the Pega application.
Correct. The data types and structure between Pega and the robotic automation must align (for example, string-to-string, integer-to-integer, JSON format consistency).
Mismatched or unstructured data results in serialization errors when passing data through the RDA bridge.
E . Match the Pega automation identifier with the robot activity component name.
Correct. The Robotic Automation Name specified in the Pega data page or case configuration (e.g., FETCH_SCORE) must exactly match the ActivityName property defined in the Robot Studio's Robot Activity component.
This linkage ensures that the correct automation is triggered when the case executes the RDA call.
Incorrect Options:
B . Design an automation to complete multiple tasks.
Not recommended. Pega advises building modular automations, where each automation performs a single defined task to simplify debugging and improve reuse.
C . Use an unlimited number of transferable data items.
Not recommended. The number of data items passed between Pega and Robotics should be limited to those necessary for the task, as excessive data transfers can degrade performance.
F . Run automations synchronously.
Not required. RDA automations typically run asynchronously, returning results through callback mechanisms to avoid blocking the user interface.
Therefore, the three recommended developer considerations are:
A . Set valid completion status
D . Ensure data formats agree between the automation and the Pega application
E . Match the Pega automation identifier with the robot activity component name
Extracted and verified from Pega Robotics System Design and Implementation Guide, Developing and Configuring Robot Activities for Pega Integration section (Pega Robotics 19.1 and later).
Which two statements are valid for the given automation? (Choose two.)

When evaluating business requirements and reviewing each application in a project, before you interrogate the application, what three actions do you perform during application discovery? (Choose Three)
Comprehensive and Detailed Explanation From Pega Robotics System Exact Extract:
Application Discovery is the initial phase in Pega Robotics project development where developers analyze target applications before interrogation. The goal is to understand how each application behaves, what technology it uses, and how it interacts with other systems.
According to the Pega Robotics System Design and Implementation Guide, section ''Application Discovery and Analysis Before Interrogation'':
''Before interrogating applications, conduct application discovery to ensure that automations can be designed effectively.
During discovery, developers should:
Determine the type and technology of each application (web, Windows, Java, or text-based).
Verify how each application is launched and operates outside Robot Studio to ensure accessibility.
Identify how many instances of each application the user accesses concurrently.
Observe dependencies or interactions between applications for orchestration planning.''
Detailed Reasoning:
A . Verify the number of application instances accessed by the user simultaneously.
Correct. This ensures that the automation can handle multiple instances (e.g., several browser windows or desktop clients).
C . Verify how the application opens outside of Pega Robot Studio.
Correct. Understanding launch methods (desktop shortcuts, URLs, credentials) helps configure adapters correctly.
E . Identify the technology on which the application is built (web, Windows, text).
Correct. This determines which adapter type (Web, Windows, or Text adapter) to configure in the project.
Incorrect Options:
B . Verify that the automation works as intended.
Incorrect. This happens after interrogation during testing, not during discovery.
D . Verify the interactions between all applications in the project.
Partially correct but not part of the discovery phase---it's addressed in the design phase.
F . Verify the match rules on all interrogated controls.
Incorrect. This is performed after interrogation, not during discovery.
Final Correct Answer: A, C, E
Extracted and verified from Pega Robotics System Design and Implementation Guide, Application Discovery and Adapter Configuration Planning section (Pega Robotics 19.1 and later).
Elizabeth Allen
3 days agoKevin Johnson
24 days agoMaria Hall
1 month agoSharon Collins
27 days agoAmanda Jackson
1 month agoAnthony Thompson
18 days agoDeborah Evans
15 days agoJessica Wilson
1 month agoAlaine
2 months agoMoon
2 months agoNarcisa
2 months agoShawn
3 months agoVerdell
3 months agoLenora
3 months agoTammara
3 months agoMarylyn
4 months agoCassi
4 months agoShasta
4 months agoColeen
4 months agoArminda
5 months agoSelma
5 months agoAntione
5 months agoJestine
5 months agoRosio
6 months agoJohnson
6 months agoEssie
6 months agoWai
6 months agoMargret
7 months agoThad
7 months agoCammy
7 months ago