Multiple Questions

Hello forum members.
I got a few questions troubling me. Any help accorded to help identify the correct option will be highly appreciated.
Thanks in advance.

J Crosby

1.A developer is building an automation for a rental car company as part of a larger project initiative. The high-level process steps are as follows:

1.Get emails from the company-wide Reservations Microsoft Outlook Inbox account
2.Extract the rental reservation data from the current email
3.Add individual rental reservation data to the Orchestrator queue
4.Login to the rental car company’s desktop application
5.For each Queue Item:
a. Navigate to the Reservations section from the Rental Requests section b. Add the rental reservation data to the Reservations section c. Close the current reservation
6. Log out and close the company’s application

The developer decides to use the Dispatcher/Performer model for the automation. Which steps will be included in the Performer process?

A. 1-3
B. 1-4
C.4-6
D. 5-6

2.A developer changed the Run value and Debug value of the Browser property to Chrome in the UI Automation section of the Activity Project Settings menu. Which activities will be affected by this change?
A. Only Attach Browser activities with the default BrowserType property
B. All Attach Browser activities in the project
C. Navigate To and Close Tab activities
D. Only Attach Browser activities with the BrowserType property set on IE

3.A developer created a process in a single .xaml file. The file includes the following steps:

  1. Logs into a web application
  2. Retrieves an Excel file
  3. Reads the data from the Excel file
  4. Inputs the data into another online application
  5. Sends an email when the task is completed

Based on UiPath best practices, what are the next steps the developer should perform?
A. Split the process steps into sequence activities, connect them using a flowchart, and test the sequences individually
B. Split the process steps into separate workflows and unit test the workflows
C. Ensure the process steps are placed in a single sequence activity and only the activities that throw errors should be tested
D. Ensure the process steps are placed in a single sequence activity and then perform start-to-finish debugging

4.A developer created a project that contains a flowchart. The developer received a change request from the business as follows:

  1. If the Invoice Number contains special characters, the robot must remove them and then continue the process.
  2. If the Invoice Number contains only digits, do not change anything, keep the existing logic.

In order to add the new requirement, which activity should the developer use in the flowchart based on UiPath best practices?
A. Flow Decision
B. Else If
C. Flow Switch
D. lf

Hi @J_Crosby

1st question → Option D is correct one. (5-6)

Steps 5 through 6 will be included in the Performer process. The Performer retrieves items from the queue, performs the necessary actions in the desktop application, and then logs out and closes the application.

2nd question → Option B is correct one. ( All Attach Browser activities in the project)

By changing the default browser to Chrome in the project settings, all Attach Browser activities within the project will now use Chrome as the browser for automation. This means any automation logic that involves interacting with web pages using Attach Browser activities will use Chrome as the selected browser.

3rd question → Option B is correct one. ( Split the process steps into separate workflows and unit test the workflows)

While options A, C, and D might have their merits in certain situations, option B aligns more closely with UiPath’s best practices for creating maintainable, scalable, and robust automation solutions.

4th question → Option C is correct one. (Flow Switch)

By using the Flow Switch activity, you can create two different cases for these conditions and specify the actions to take in each case. This makes the workflow more organized and easier to understand compared to using a series of If-Else or If-Else If activities.

Hope it helps!!

@mkankatala,I just edited the order of steps for Q1 and wondering if it would affect your input. Please check it out again.

Okay @J_Crosby

In the process state, we will do the process in the 5th process only, the process has to be done in the process state are in 5th point as a,b and c points.

The Logout and close the company’s application will do it in End process State.

@mkankatala thanks man!

1 Like

Welcome @J_Crosby

Happy Automation!!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.