UiARDFree trialFree trial

By uipath
Aug, 2025

Verified

25Q per page

Question 1

A developer reviewed the following sequence:

Image 1

The parameters of the Invoke Method are:

Image 2 Image 3

In order to get the table name of the first element in the DataSet, which expressions should the developer use?

  • A: DataSet.Tables(0).TableName
  • B: DataSet.Tables(1).TableName
  • C: DataSet.Rows(0).TableName
  • D: DataSet.Rows(1).TableName

Question 2

A developer is working on an automation. The automated process must log into Citrix and click on the "Generate Shipment Details" button. Ideally, this generates a table of shipping records. If the generated table displays only the header row and no data is available, then it should be marked as an exception since the data is incomplete.
What is this type of exception?

  • A: BusinessRuleException
  • B: NullReferenceException
  • C: ApplicationException
  • D: SystemException

Question 3

A developer wants to create an attended automation process. The process will take information from emails in the current user's inbox.
Assuming the email/domain or password for the user's email inbox are not provided in the automation, which activity can be used to get unread emails with the subject line "Email for Robot"?

  • A: Get Exchange Mail Messages
  • B: Get POP3 Mail Messages
  • C: Get Outlook Mail Messages
  • D: Get IMAP Mail Messages

Question 4

A developer was assigned a task to build a process that will interact with hidden or minimized windows on an employee's machine.
To ensure the UI automation runs in the background which commonly used activity property must always be avoided?

  • A: Default
  • B: Simulate Type
  • C: Activate
  • D: SendWindowMessages

Question 5

A developer needs to create a process that writes the table to an Excel file. While creating this process, the developer notices that two activities with the same name can write the scraped DataTable to Excel.
What are the differences between the Workbook and Excel Write Range activities?

  • A: (Excel) Write Range activity only works in the foreground, visible to the user. (Workbook) Write Range activity only works in the background.
  • B: (Excel) Write Range activity must be included in an Excel Application Scope activity. (Workbook) Write Range activity requires that the file is not opened by the user before running.
  • C: Excel Write Range activity will create the file in the WorkbookPath property if it does not exist. Workbook Write Range activity can only be used when Excel is installed.
  • D: (Excel) Write Range activity only works in the background. (Workbook) Write Range activity will create the file in the WorkbookPath property if it does not exist.

Question 6

A developer wanted to use a Type Into activity which interacts with hidden or minimized windows. However, the process was only able to run on foreground windows. Which activity property configuration would cause the automation to run only on foreground windows?

  • A: SendWindowMessages property was enabled in the Type Into activity.
  • B: SimulateType property was enabled in the Type Into activity.
  • C: Activate property was disabled in the Type Into activity.
  • D: Default property selections of the Type Into activity were used.

Question 7

Review the following exhibit:

Image 1

Based on the exhibit, what is the result of the Write Line in the sequence?

  • A: 123
  • B: True
  • C: Hello
  • D: 123True

Question 8

Review the following exhibits:

Image 1 Image 2

Based on the exhibits, what is the output of the sequence?

  • A: <blank line> A2X9k
  • B: A1bx3 - A1bx3
  • C: A1bx3 - A2X9k
  • D: A2X9k - A2X9k

Question 9

A developer wants to extract data from "Sheet1" of the "Test.xls" file using the following code:

Image 1

In addition, the developer configured the following properties of the Read Range activity:

Image 2

Based on the exhibits, what is the result of the execution?

  • A: OutputDataTable object will have 2 columns and 1 row containing values of cells "A1" and "B1"
  • B: OutputDataTable object will have 2 columns and 1 row containing values of cells "A2" and "B2"
  • C: OutputDataTable object will have 2 columns and 2 rows containing values of cells "A2" and "B2"
  • D: OutputDataTable object will have 2 columns and 10000 rows; the first row will contain values of cells "A1" and "B1"

Question 10

A developer needs to extract data from "Sheet1" of the "Test.xls" file that contains 10,000 rows of data using the code shown in the following exhibit:

Image 1

In addition, the developer configured the following properties of the Read Range activity:

Image 2

Based on the exhibits, what is the output of the expression, OutputDataTable.Rows.Count and what values will be contained in the OutputDataTable?

  • A: OutputDataTable.Rows.Count = 1 - Contains the values of cells "A2" and "B2"
  • B: OutputDataTable.Rows.Count = 2 - Contains the values of cells "A1" and "B1"
  • C: OutputDataTable.Rows.Count = 2 - Contains the values of cells "A2" and "B2"
  • D: OutputDataTable.Rows.Count = 10,000 Contains the values of cells "A2" and "B2"

Question 11

A developer wants to create a process which uses UI automation activities on hidden or minimized windows for a user in a Call Center. While the process is running on the user’s machine, the user also needs the ability to use the machine to look up items in a desktop application.
Which activity must be configured to be able to interact with hidden or minimized windows?

  • A: Get Full Text
  • B: Set Text
  • C: Click
  • D: Check

Question 12

A new blank project only has the Main.xaml file and consists of a single Throw activity. The activity is not enclosed in a Try Catch activity.
If this process is published and run from Orchestrator, what is the expected result?

  • A: Exception Pop-up is displayed on the robot machine.
  • B: Job is completed with a "Stopped" state.
  • C: Job is completed with a "Successful" state.
  • D: Job is completed with a "Faulted" state.

Question 13

A developer published a library component for use within UiPath Studio.
In order to successfully add this library as a dependency to the project, what should be used?

  • A: Invoke Com Method activity
  • B: Imports Panel
  • C: Invoke Method activity
  • D: Manage Packages Window

Question 14

A developer wants to design a process in which multiple decision points will be used to accommodate complex scenarios.
In UiPath Studio, which recommended type of workflow meets this requirement?

  • A: State Machine
  • B: Sequence
  • C: Global Exception Handler
  • D: Flowchart

Question 15

A developer plans to create a process to automate a web application. The web application requires HTML buttons and text boxes to be loaded. Although some assets may still be loading, the robot should perform the UI actions once the buttons and text boxes are loaded.
Which property should be configured?

  • A: TimeoutMS = 10000
  • B: WaitForReady = Complete
  • C: TimeoutMS = Int32.MaxValue
  • D: WaitForReady = Interactive

Question 16

A developer entered custom values in the Browser property in the UI Automation section of the Activity Project Settings menu.
Which set of activities can be affected by this change?

  • A: Navigate To and Attach Browser
  • B: Open Browser and Navigate To
  • C: Open Browser and Close Tab
  • D: Attach Browser and Open Browser

Question 17

A developer configured the properties for a Click activity on an element inside a web page as shown in the exhibit. An animation on the web page never completely loads but the element specified in the Click activity does load within the specified timeout duration.

Image 1

What occurs when this Click activity executes?

  • A: Timeout error occurs without clicking on the element.
  • B: Waits 10 seconds before clicking on the element.
  • C: Continues to the next activity after 30 seconds without clicking on the element.
  • D: Element is clicked once it is fully loaded.

Question 18

If a developer wants to use a variable of type UIElement to identify a button in a Click activity, which property must be manually configured during development?

  • A: Element
  • B: Selector
  • C: ClippingRegion
  • D: WaitForReady

Question 19

A developer needs to create a process that performs the following:

  1. Scrapes a table of common English-Spanish translations
  2. Writes the table to an Excel file
  3. Emails that Excel file as an attachment
    While creating this process, the developer notices that two activities with the same name can write the scraped DataTable to Excel.
    What are the differences between the Workbook and Excel Write Range activities?
  • A: Excel Write Range activity can only be used when Excel is installed. Workbook Write Range activity can be faster by writing the data directly to the file.
  • B: Excel Write Range activity only works in the foreground, visible to the user. Workbook Write Range activity only works in the background.
  • C: Excel Write Range activity will create the file in the WorkbookPath property if it does not exist. Workbook Write Range activity can only be used when Excel is installed.
  • D: Excel Write Range activity only works in the background. Workbook Write Range activity will create the file in the WorkbookPath property if it does not exist.

Question 20

You are developing a .xaml file to interact with multiple fields of a web page. You want to Auto Empty the fields that require input.
Which input method(s) will automatically empty the target input fields?

  • A: "SendWindowMessages" only
  • B: "SendWindowMessages" and "Default"
  • C: "SimulateType" only
  • D: "Default" only

Question 21

A developer needs to reference the element in the first row of the "ID" column in the System.Data.DataTable, "DT".
Which expression is used to reference this element?

  • A: DT.Rows(0).ID
  • B: DT.Rows(1).ID
  • C: DT.Rows(0).Item("ID")
  • D: DT.Rows(1).Item("ID")

Question 22

A developer wants to create a process for a Call Center user. This process must:

  1. Interact with application windows that are minimized or in the background.
  2. Allow the user to interact with separate desktop applications at the same time.
    Which workflow activity requires modifications to some of the properties' default values to ensure this process runs in the background?
  • A: Get Text
  • B: Element Exists
  • C: Select Item
  • D: Type Into

Question 23

HOTSPOT -
A developer has created a project to scrape structured data from Service Desk tickets. Upon review, the developer discovered that the Extract Structured Data activity was set to retrieve 50 results. The activity needs to be updated to retrieve all available results.
From the drop-down list shown in the exhibit, select the correct value that should be used to update the MaxNumberOfResults property.

Image 1

Question 24

A developer uses a Key Press Trigger activity and a Click Trigger activity to monitor events in an application. The two Trigger activities are within the same Trigger Scope activity. Which approach ensures the workflow exits the Trigger Scope activity after any trigger is activated and the associated action is performed?

  • A: Set "SchedulingMode=Concurrent" in the Trigger Scope activity properties
  • B: Set "BlockEvent=False" in the properties for the two Trigger activities
  • C: Set the Trigger Scope activity within a Parallel activity
  • D: Set "SchedulingMode=OneTime" in the Trigger Scope activity properties

Question 25

A developer created a process which extracts text from an element on an HTML website using a Get Text activity. The developer observed that the text can only be successfully extracted when the attribute "innertext" updates or changes from "false" to "true". The target element can take up to 20 seconds to load.
Which activity should be used before the Get Text activity to ensure the target element text can be extracted?

  • A: Set Web Attribute
  • B: Delay
  • C: On Element Appear
  • D: Wait Attribute
Page 1 of 10 • Questions 1-25 of 230

Free preview mode

Enjoy the free questions and consider upgrading to gain full access!