Weekend Sale - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: sntaclus

A developer wants to create a process that searches for images on a website and then saves the images in a local folder However, the website contains an error. As a result, the process may need to search for an image multiple times in order for it to display.

Which container activity should the developer use to search for an image multiple times'?

A.

Attach Browser

B.

On Image Appear

C.

On Element Appear

D.

Retry Scope

What is the advantage of utilizing UiPath Orchestrator queues?

A.

Allows several robots to handle the same Queue Item simultaneously.

B.

Capability to modify the retry count at the queue level after its creation.

C.

Guarantees each queue is exclusively processed by a single robot, by default.

D.

Capability to track the status of Queue Items.

A developer examines a workflow in which filenames are stored within a collection. The collection is initialized with a single filename. When adding a new filename to the collection, which collection variable type will cause an error?

A.

System.Collections.Generic. Dictionary

B.

System.Array

C.

System. Data. DataTable

D.

System.Collections.Generic.List

A developer wants to assign the first row of the "ID" column in the "DT" datatable to a String variable. Which expression should be added to the Value field of the Assign activity?

A.

DTRows(0)ID

B.

DTRows(0). ltem("ID")

C.

DTColumns(0)ID

D.

DTColumns(0) ("ID")

A developer has created a variable of type List of Strings named "UsersList", and initialized it with an empty list: "UsersList = new List(Of String)".

What is printed in the log message after the following Invoke Code is executed?

A.

0

B.

2

C.

Object reference not set to an instance exception is thrown

D.

System Argument Exception is thrown

Which activity enables a developer to run three sequences asynchronously in the process they are developing?

A.

Parallel

B.

Switch

C.

For Each

D.

Flow Switch

What is the most efficient way to implement the behavior of monitoring an Outlook 365 email account and executing automation steps when a certain email is received?

A.

Create a robot that periodically opens Outlook UI, scrapes received email information, opens and extracts data from matching criteria emails, initiates a new job, and continues email monitoring.

B.

Use the Office365 Email Monitoring Trigger and configure the filters.

C.

Use the Office365 Email Received Trigger and configure the filters.

D.

Create a robot that once every few minutes reads the emails from the account and if one matching the search criteria appears, it starts executing the automation steps.

A developer wants to extract hidden text from a pdf file. Which output method(s) should be used?

A.

FullText and Native

B.

Native only

C.

OCR

D.

FullText only

What are Application Files in a ServiceNow application?

A.

CSV files containing data imported into an application

B.

XML exports of an application's Update Set

C.

An XML export of an application's table records

D.

ServiceNow artifacts comprising an application

Upon extracting data from a website, a developer saves it in three variables: "FirstName", "LastName", and "City". The developer intends to store these three String variables in a fixed-size data structure called

"UserData", to be utilized later within another workflow in the process.

Considering best practices, which data structure and assignment should be used?

A.

UserData is of type List

UserData = New List(Of Object) ({ FirstName, LastName, City })

B.

UserData is of type Object[]

UserData = {FirstName, LastName, City}

C.

UserData is of type List

UserData = New List(Of String) ({ FirstName, LastName, City })

D.

UserData is of type String[]

UserData = {FirstName, LastName, City}