Weekend Sale Special Limited Time Flat 70% Discount offer - Ends in 0d 00h 00m 00s - Coupon code: 70spcl

UiPath UiPath-ADAv1 UiPath Automation Developer Associate v1 Exam Exam Practice Test

Page: 1 / 25
Total 254 questions

UiPath Automation Developer Associate v1 Exam Questions and Answers

Question 1

What are the steps to publish a project from UiPath Studio?

Instructions: Drag the Description found on the "Left" and drop on the correct Step Sequence found on the "Right".

Question # 1

Options:

Question 2

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?

Options:

A.

System.Collections.Generic. Dictionary

B.

System.Array

C.

System. Data. DataTable

D.

System.Collections.Generic.List

Question 3

Given the following list of arguments:

Question # 3

And the following code:

Question # 3

What is the value that will be displayed in the Output Panel at the end of the sequence below:

Question # 3

Options:

A.

1

B.

2

C.

7

D.

9

Question 4

A developer has created the following workflow:

Question # 4

Based on the exhibit, which output is produced in the Output panel?

Options:

A.

World Hello

B.

World

C.

Hello World

D.

Hello

Question 5

Which activity should the developer utilize in order to retrieve all UI elements from a form based on a filter criterion?

Options:

A.

Get Ancestor

B.

Export UI Tree

C.

Find Element

D.

Find Children

Question 6

What is the default polling interval set for an event trigger?

Options:

A.

1 minute

B.

5 minutes

C.

10 minutes

D.

15 minutes

Question 7

A developer wants to add items to a list of strings using the Invoke Method activity. The list is declared as follows:

Question # 7

The Invoke Method includes the following properties:

Question # 7

The Parameters property is as follows:

Question # 7

Based on the exhibits, what is the outcome of this Invoke Method activity?

Options:

A.

Invoke Method activity will throw an error.

B.

Colors will contain items in the following order: "Yellow", "Red", "Green".

C.

Colors will contain items in the following order: "Red", "Green", "Yellow".

D.

Colors will contain items in the following order: "Red", "Green".

Question 8

A developer needs to use the REFramework to automate a business process that involves processing transactions within an Excel table. Each transaction in the table should follow the same steps for

processing and queues cannot be used as there is no Orchestrator in the environment.

Which variable type is best suited for Transactionltem in this scenario?

Options:

A.

System.Data.DataRow

B.

UiPath.Core.Queueltem

C.

System.Data. DataTable

D.

System.Data.DataRow[]

Question 9

The "DataTable_Users" variable of the data table type contains the following columns: "First Name". "Last Name", "Date of Birth", and "Username".

How can the argument "in_UserName" from "BuildUserID.xaml" be mapped to the appropriate values in "Main.xaml"?

Question # 9

Options:

A.

CurrentRow("Username").ToString

B.

DataTable_Users("Username").ToString

C.

UserID

D.

Usernames

Question 10

A developer has defined an Int32 variable called IntVar The developer has written the following expression in a Log Message activity.

Convert. ToBoolean(lntVar)

If IntVar = 0, what is displayed in the Output panel after the execution of the Log Message activity?

Options:

A.

The value True is displayed

B.

A System ArgumentNullException is displayed

C.

A System.InvalidCastException is displayed

D.

The value False is displayed

Question 11

A developer is working with an application that allows all types of input methods for the Type Into activity. Which property should be enabled for the fastest execution?

Options:

A.

Click before typing

B.

Empty field

C.

Simulate

D.

Window Messages

Question 12

What is a pre-requisite for running InitAllApplications TestCase?

Options:

A.

Invoke CloseAllApplications XAML file in Given.

B.

Invoke KillAllProcesses XAML file in Given.

C.

Invoke InitAllSettings XAML file in Given.

D.

Invoke SetTransactionStatus XAML file in Given.

Question 13

In what situations is it appropriate to use a static selector instead of a dynamic selector?

Options:

A.

When the automation requires high flexibility.

B.

When the automation process requires better performance.

C.

When the target element's properties change frequently.

D.

When the target element's attributes remain constant and do not change during runtime.

Question 14

A developer loaded an existing workflow that uses Ul Automation in Google Chrome. The Google Chrome extension has not been installed on the developer's machine How should the developer load the Google Chrome extension from UiPath Studio?

Instructions: Drag the Description found on the left and drop on the correct Step found on the right.

Question # 14

Options:

Question 15

Where in the REFramework template project is the "SetTransactionStatus.xaml" invoked?

Options:

A.

In the Finally section of the Try Catch activity in the Process Transaction state.

B.

In the Try section of the Try Catch activity in the End Process state.

C.

In the Try and Catches sections of the Try Catch activity in the Process Transaction state.

D.

In the Catches section of the Try Catch activity in the Process Transaction state.

Question 16

A variable should be created and used for storing one or multiple IDs. The collection of IDs can be updated during the execution of the robot by adding elements. Which should be the data type of this variable, taking into account that each of the IDs has the following format: XX-XX-XX (where X is a digit)?

Options:

A.

List

B.

List

C.

String

D.

String[]

Question 17

A developer intends to enter text into an input field using a combination of a string and a hotkey. The input action should take place within a hidden or minimized window.

Which input method(s) can be used individually for the Type Into activity?

Options:

A.

Simulate only.

B.

Simulate and Window Messages.

C.

Same as App/Browser and Simulate.

D.

Window Messages only.

Question 18

What role do Triggers play in the UiPath Integration Service?

Options:

A.

Manage connections between UiPath Studio and third-party applications.

B.

Provide a mechanism for starting processes on a scheduled basis from Orchestrator.

C.

Assist in the creation of automation projects by providing event-based activities.

D.

Provide a mechanism for subscribing to specific events from third-party applications, automatically starting processes in Orchestrator.

Question 19

Consider the following automation steps:

1. Open the Web Browser.

2. Scrape the data.

3. Store the data in Microsoft Excel.

4. Close the Web Browser.

In accordance with UiPath best practices, which section of the Try Catch activity ensures that Step 4 (closing the web browser) is executed regardless of any exceptions

occurring in Step 2 (data scraping) or Step 3 (storing data in Microsoft Excel)?

Options:

A.

Try Block

B.

Business Exception Catch Block

C.

Finally Block

D.

Application Exception Catch Block

Question 20

Which of the following statements correctly describes the characteristics of Unattended Automation?

Options:

A.

Unattended Automations are automations that run under human supervision and are typically used for tasks requiring a clear audit chain.

B.

Unattended Automations are automations intended for more complex and highly repetitive tasks, usually performed in batches, and can be decided based on predefined rules.

C.

Unattended Automations are intended for smaller, fragmented tasks and run with user supervision, requiring the user's credentials for access.

D.

Unattended Automation are automations that run under human supervision and, because of this, are best suited for small tasks.

Question 21

Which of the following statements accurately describes the primary components of a State Machine in a workflow?

Options:

A.

A State Machine consists of four primary components: States, Triggers, Transitions, and Actions.

B.

A State Machine is composed of States, Triggers, and Loops.

C.

A State Machine comprises three main components: Sequences, Flowcharts, and Input/Output Arguments.

D.

A State Machine is made up of States, Transitions, Entry Actions, and Exit Actions.

Question 22

While working on a project that utilizes Object Repository, you have one linked Ul Element that is used across multiple activities. What needs to happen to edit a selector for

only one activity without modifying it in Object Repository?

Options:

A.

Unlink from Object Repository.

B.

Show in Object Repository.

C.

Edit target.

D.

Indicate target on screen.

Question 23

What do the percentages from the Test Explorer panel represent?

Question # 23

Options:

A.

Correctness of the code percent.

B.

Passing percent.

C.

Coverage percent.

D.

Percent of test data run.

Question 24

What is the use of job priorities in unattended automations within UiPath Orchestrator?

Options:

A.

To determine which processes should be executed first when dealing with multiple jobs.

B.

To sort and organize tasks within a folder.

C.

To create job dependencies that must be completed before new job execution.

D.

To determine machine resource allocation among processes.

Question 25

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

Options:

A.

FullText and Native

B.

Native only

C.

OCR

D.

FullText only

Question 26

Which dependencies are automatically installed when a developer starts a blank process in UiPath Studio?

Options:

A.

UiPath.Database.Activities and UiPath.Form.Activities.

B.

UiPath.Python.Activities and UiPath.Word.Activities.

C.

UiPath.System.Activities, UiPath.Excel.Activities, UiPath.Mail.Activities, UiPath.UIAutomation.Activities and UiPath. Testing.Activities.

D.

UiPath.PDF.Activities and UiPath. Terminal.Activities.

Question 27

If you are inserting activities into a Sequence in UiPath Studio, in which panel do the activities appear?

Options:

A.

Snippets

B.

Designer

C.

Imports

D.

Outline

Question 28

Which Control Flow activity is suitable for a developer who needs to assess the value of a counter before executing the loop's body in a workflow?

Options:

A.

Do While

B.

Switch

C.

)While

D.

If

Question 29

What will be the outcome when executing a Try Catch activity with a sequence placed within the Try section and no Catches section present?

Options:

A.

In case of an exception, a System Exception will be caught by default.

B.

Due to a validation error, the workflow will not execute.

C.

Process execution will terminate only if the sequence throws an exception.

D.

The sequence will result in a runtime error.

Question 30

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?

Options:

A.

DTRows(0)ID

B.

DTRows(0). ltem("ID")

C.

DTColumns(0)ID

D.

DTColumns(0) ("ID")

Question 31

What happens to existing project dependencies in UiPath Studio when converting a Windows-Legacy project to Windows?

Options:

A.

Project dependencies are updated to the highest available version.

B.

Project dependencies are completely removed.

C.

Project dependencies remain unchanged.

D.

Project dependencies are marked as unresolved.

Question 32

What is a prerequisite for performing Remote Debugging using a Remote Machine Connection?

Options:

A.

Studio and the remote robot must be connected to the same Orchestrator tenant.

B.

The same user must be signed in Studio and the remote robot.

C.

Studio, the remote robot, and Orchestrator are running version 2021.10 or later.

D.

TCP/IP connectivity exists between the Studio machine and the remote machine.

Question 33

When a developer runs a process using the REFramework, with the process utilizing Orchestrator queues and a queue already created with the Name provided and the Auto Retry function disabled, which states will be executed without errors?

Options:

A.

Initialization -> Process Transaction -> End Process

B.

Initialization -> Get Transaction Data -> Process Transaction -> End Process

C.

Initialization -> Get Transaction Data -> End Process

D.

Initialization -> End Process

Question 34

What is enabled by connecting UiPath Studio to Orchestrator?

Options:

A.

Publishing automation packages to Orchestrator.

B.

Defining queues and arguments for use in automations.

C.

Generating API keys for use in integrations with third party apps.

D.

Creating an Object Repository of elements for use in automations.

Question 35

What is the role of connections in the UiPath Integration Service?

Options:

A.

Connections establish tasks and exchanges between users and external applications using the authentication process of the API provider.

B.

Connections establish tasks and exchanges based on a connector's compatibility with the external application.

C.

Connections establish tasks and exchanges between users and external applications using the authentication process of the UI automation provider.

D.

Connections establish tasks and exchanges between users and external applications using the server-side triggers.

Question 36

When is the Anchor Base activity used to automate interaction with an application?

Options:

A.

When the element selector is reliable but the element's position on the screen changes

B.

When all the element selectors in the application are reliable

C.

When no element selectors are available in the automated application

D.

When the element selector is not reliable and the element's position on the screen changes

Question 37

A developer created three variables used in the workflow shown below:

Question # 37

Instructions: Based on best practices, select the correct Scope for each Variable type from the drop-down lists shown in the following exhibit.

Question # 37

Options:

Question 38

A developer needs to prioritize automating several processes. To help prevent any long-term maintenance, which process attribute should be avoided?

Options:

A.

Logical decision points

B.

Repetitive business process

C.

Frequent application changes

D.

High volume work

Question 39

Which is the recommended variable type for storing password values that are composed solely of numbers?

Options:

A.

SecureString

B.

Int32

C.

String

D.

Int64

Question 40

A developer has defined a variable named "CurrentDate" of type Date Time. Which of the following expressions can be used to show what hour was 12 hours prior to the date from the variable?

Options:

A.

CurrentDate.AddHours(-12).Hour

B.

Date Time.SubtractHours(CurrentDate, 12).Hour

C.

CurrentDate.SubtractHours(12).Hour

D.

Date Time.AddHours(CurrentDate, -12).Hour

Question 41

What describes how the Excel Application Scope activity interacts with a Microsoft Excel file?

Options:

A.

Works only with xls files and Excel does not need to be installed

B.

Works with xlsx files and Excel does not need to be installed

C.

Works only with xlsm files and Excel must be installed

D.

Works with xls and xlsm files and Excel must be installed

Question 42

A developer has declared a variable of type String named StrVar and assigned it the value "UIPATH STUDIO". What is the output of the expression, StrVar.lndexOf("U")?

Options:

A.

0

B.

1

C.

9

D.

10

Question 43

What distinguishes the Settings sheet from the Assets sheet in the "Config.xlsx" file?

Settings sheet contains Credential Assets stored in Orchestrator. Assets sheet contains hard-coded values.

Options:

A.

Settings sheet contains hard-coded values. Assets sheet contains all names of Orchestrator Assets including those of type Credential.

B.

Settings sheet contains only values used for the initialization of applications. Assets sheet contains only Credential Assets stored in Orchestrator.

C.

Settings sheet contains hard-coded values. Assets sheet contains all names of Orchestrator Assets except those of type Credential.

Question 44

A developer used a dictionary to store employee ID numbers as the key with associated employee surnames as the value What is the benefit of using a dictionary?

Options:

A.

Dictionaries can have repeated keys

B.

Dictionaries must have unique values

C.

Dictionaries can be searched by keys or values

D.

Dictionary keys and values can be of different data types

Question 45

A developer has created an automation process that includes:

Question # 45

Question # 45

Question # 45

Based on the information shown in the exhibits, what is the output of the Write Line activity in the Main xaml file?

Options:

A.

Apple

B.

Orange

C.

Apple Orange

D.

Orange Apple

Question 46

A developer invoked a workflow file with three arguments, one "ln": one "Out", and one "In/Out". In the Invoked Workflow's Arguments window, how can the Value be configured for each argument?

Options:

A.

In: Variable or Hard-coded value

Out: Variable only

In/Out Variable only

B.

In: Variable only Out

Variable only

In/Out: Variable only

C.

In: Variable or Hard-coded value

Out Variable or Hard-coded value

In/Out Hard-coded value only

D.

In: Variable or Hard-coded value

Out' Hard-coded value only

In/Out Variable only

Question 47

When creating a new test case, which option restricts dynamic data update in UiPath Orchestrator once the test case is published?

Question # 47

Options:

A.

Data Service

B.

File

C.

Test Data Queue

D.

Data Service with Filter

Question 48

When encountering an ApplicationException, what occurs if the developer chooses InvalidOperationException as the exception handler within the Catches section of the Try Catch activity?

Question # 48

Options:

A.

The Finally block is executed and the Catches section catches the exception.

B.

A runtime error occurs and the Finally block is not executed.

C.

No exceptions are happening and the workflow continues to execute.

D.

No exception is thrown and the Finally block executes.

Question 49

In a process, a variable called "Timestamp" of type Date Time is used. The developer wants to print in the Output panel the variable in the format "yyyy-MM-dd hh:mm". Which

expression should be used to display the value?

Options:

A.

Timestamp. ToString("yyyy-MM-dd hh:mm")

B.

Timestamp. ToDate Time("yyyy-MM-dd hh:mm")

C.

Timestamp.Compare To("yyyy-MM-dd hh:mm")

D.

Timestamp. ToString("yyyy MM dd hh mm")

Question 50

Which activity should be used inside a Use Excel File scope to be able to sort a table directly in an ".xlsx" file?

Options:

A.

Get Table Range

B.

Sort Data Table

C.

Read Range

D.

Sort Range

Question 51

What is the correct sequence of steps to install a new Activities package in UiPath Studio 2021 10? Instructions:

Drag the Description found on the left and drop on the correct Step found on the right.

Question # 51

Options:

Question 52

Which of the following demonstrates the correct syntax for using the Vb.Net "If" Operator?

Options:

A.

If(condition1, valuelfTrue, valuelfFalse)

B.

If(condition1, valuelfTrue) Elself(valuelfFalse)

C.

If condition1 Then valuelfTrue Elself valuelfFalse

D.

valuelfTrue If condition1 Else valuelfFalse

Question 53

How can a user change the profile from UiPath Studio to UiPath StudioX from the backstage view?

Options:

A.

By going to Home - Settings - Design - Change profile and clicking on the UiPath StudioX profile, then clicking "Yes" when prompted to restart the application.

B.

By going to Home - Tools - Design - Change profile and clicking on the UiPath StudioX profile, then clicking "Yes" when prompted to restart the application.

C.

By going to Home - Settings - License and profile - Change profile and clicking on the UiPath StudioX profile, then clicking "Yes" when prompted to restart the application.

D.

By going to Home - Settings - Locations - Change profile and clicking on the UiPath StudioX profile, then clicking "Yes" when prompted to restart the application.

Question 54

Which of the following statements is true about Global Constants?

Options:

A.

Global Constants can be created only from the Data Manager panel.

B.

Global Constants values can be modified during the automation execution.

C.

Global Constants have a Direction property (In/Out).

D.

Global Constants can be created from the Data Manager panel and from the Variables panel.

Question 55

A developer designed an automation to use an Asset value from Orchestrator using the Get Asset activity. The value represents email addresses of the process owners which may change.

Which Asset Type should be used?

Options:

A.

Bool

B.

Credential

C.

Text

D.

Integer

Question 56

Which command in the UiPath installation folder configures the UiPath.RemoteDebugging.Agent utility on a Windows robot to accept remote debugging requests from Studio?

Options:

A.

dotnet ./UiPath.RemoteDebugging.Agent.dll enable -- port -- password -- verbose

B.

UiPath.Remote Debugging.Agent.exe start -- port -- password -- verbose

C.

UiPath.Remote Debugging.Agent.exe enable -- port -- username -- password -- verbose

D.

UiPath.Remote Debugging.Agent.exe enable -- port -- password -- verbose

Question 57

What method can be used to change the index of an existing column in a datatable?

Options:

A.

Setlndex

B.

MoveAt

C.

SetColumnIndex

D.

SetOrdinal

Question 58

The following table is stored in a variable called "dt".

Question # 58

What will the value of the qty variable be after executing the Assign activity?

Question # 58

Options:

A.

5

B.

10

C.

80

D.

null

Question 59

Which of the following best describes the Alerts panel?

Options:

A.

A panel that displays summaries of the alerts you subscribed to, received as error reports every ten minutes, or as daily reports.

B.

A panel that displays a more comprehensive list of all alerts.

C.

A panel that displays alerts as they occur.

D.

A panel that displays the most severe five alerts, accessible from the Alerts bell.

Question 60

A process workflow contains a Try Catch activity that is designed to catch and stop when any unknown System Exceptions occur. What would be the recommended Log Level

for the Log Message contained in the System Exception block?

Options:

A.

Info

B.

Warn

C.

Fatal

D.

Error

Question 61

A developer is building a process that needs to click an element which requires a mouse hover to become visible. However, the element does not appear with the default click setting. The input method for the Click activity is Send Window Message

Which property should the developer configure to be able to click the element?

Options:

A.

The developer should change the input method to Hardware Events and the CursorMotionType to Smooth.

B.

The property AlterlfDisabled should be set to True.

C.

The developer should change the input method to Simulate and the CursorMotionType to Instant.

D.

The property AlterlfDisabled should be set to False.

Question 62

What is the main difference between an array and a list in UiPath?

Options:

A.

An array is a fixed-size collection of elements of the same type while a list is a dynamic-sized collection of elements of the same type,

B.

An array is a dynamic-sized collection of elements of the same type while a list is a fixed-size collection of elements of the same type.

C.

An array is a fixed-size collection of elements of different types while a list is a dynamic-sized collection of elements of the same type.

D.

An array is a fixed-size collection of elements of the same type while a list is a dynamic-sized collection of elements of different types.

Question 63

When installing UiPath Studio, which of the following actions require administrator privileges?

Options:

A.

Administrator privileges are not required for installing UiPath Studio.

B.

Administrator privileges are required for installing the robot in both service mode and user mode.

C.

Administrator privileges are required for installing the robot in user mode.

D.

Administrator privileges are required for installing the robot in service mode.

Question 64

What is the purpose of the Invoke Code activity in UiPath?

Options:

A.

Invokes VB.NET or C# code, optionally passing it a list of input arguments.

B.

Invokes VB.NET or Java code, optionally passing it a list of input arguments.

C.

Invokes VB.NET code, optionally passing it a list of input arguments.

D.

Invokes Java code, optionally passing it a list of input arguments.

Question 65

A developer wants to design a complex business process using UiPath Studio. The workflow type needs to present multiple branches between Ul activities Which recommended type of workflow meets the requirement?

Options:

A.

Global Exception Handler

B.

Flowchart

C.

Sequence

D.

State Machine

Question 66

What is a true statement regarding the characteristics of dictionaries in UiPath?

Options:

A.

Dictionaries can have repeated keys.

B.

Dictionaries allow keys and values to be of different data types.

C.

Dictionaries must have unique values.

D.

Dictionaries provide automatic sorting of key-value pairs, ensuring efficient retrieval of data.

Question 67

A developer indicated a Ul element for a Get Text activity. The automatically-generated selector is shown below.

Based on best practices, which selector attribute is unreliable?

Options:

A.

tag

B.

class

C.

title

D.

innertext

Question 68

A developer is working with a Purchase Order automation process. The number of shipped containers and the number of items in each container are extracted in two strings,

"ShippedContainers" and "ItemsPerContainer". The robot must calculate the total number of items in all shipped containers, as an Integer.

Which expression is suitable for calculating the total number of boxes?

Options:

A.

String. Tolnt32(ShippedContainers) * String. Tolnt32(ItemsPerContainer)

B.

Convert. Tolnt32(ShippedContainers) * Convert.Tolnt32(ItemsPerContainer)

C.

Clnt(ShippedContainers * ItemsPerContainer)

D.

ShippedContainers. Tolnt32() * ItemsPerContainer.Tolnt32()

Question 69

In which situation will a Ul Automation activity generate a partial selector?

Options:

A.

When included after a Find Element activity

B.

When included in an Attach Browser activity

C.

When included in an Excel Application Scope activity

D.

When included in a Trigger Scope activity

Question 70

A developer has published a new library from UiPath Studio to the Orchestrator feed. Another developer on the team is connected to the same Orchestrator where the library has been published.

What steps are necessary for adding this library as a dependency in a project?

Options:

A.

Open the Manage Packages Window and ensure the Orchestrator feed is enabled. In the Imports Panel in Studio, search for the package by name, and then install the package.

B.

Open the Manage Packages Window and install UiPath.System.Activities. Drag and Drop the Invoke Com Method activity and input the library name as a parameter.

C.

Open the Manage Packages Window and install UiPath.System.Activities. Drag and Drop the Invoke Method activity and input the library name as a parameter.

D.

Open the Manage Packages Window and ensure the Orchestrator feed is enabled. Search for the package by name in the Search bar and then install the package.

Question 71

What is the most appropriate way to convert a designed process into a template after completing the project?

Options:

A.

Use the "Save As" option to save the project as a new file type and manually change the file extension to create a template.

B.

Use the Export as Template option from the UiPath Studio.

C.

Create a new Template and move the activities from the existing process to the new Template.

D.

There is no way the developer can do this.

Question 72

You are invoking a workflow file called "SecondaryWorkflow.xaml" from "PrimaryWorkflow.xamr. The following shows the Import Arguments panel of the Invoke Workflow File activity:

Question # 72

In addition, the following reflects the Arguments panel in ''SecondaryWorkflow.xaml":

Question # 72

You use a Log Message activity in “SecondaryWorkflow.xamr to print the value of the argument “in_Message". What is the expected result of executing "PrimaryWorkflow.xaml"?

Options:

A.

Log message "This is the second file".

B.

Log message "Invoked from the first file".

C.

A System.ArgumentException is thrown at the Invoke Workflow File activity.

D.

The Log Message activity displays an empty string.

Question 73

In the Catches section of the Try Catch activity a developer selected ArgumentException in the exception handler.

Question # 73

What happens when the activity encounters a NullReferenceException?

Options:

A.

The Finally block is not executed and a runtime error occurs.

B.

The Finally block executes and no exception is thrown.

C.

The Catches section catches the exception and the Finally block is executed.

D.

The Catches section catches the exception and the Finally block is skipped.

Question 74

Data from an Excel file is read into a data table named "dtEmployee", as displayed in the following graphic:

Question # 74

A developer needs to filter the data table to obtain all rows representing employees from the Finance and IT departments with a Salary under 30,000. Which expression yields the desired outcomes?

Options:

A.

dtEmployee.Select("([Department]='IT' AND [Department]='Finance') AND [Salary] < 30000")

B.

dtEmployee.Select("[Department]='IT' OR [Department]='Finance' AND [Salary] < 30000")

C.

dtEmployee.Select("([Department]='IT' OR [Department]='Finance') AND [Salary] < 30000")

D.

dtEmployee.Select("[Department]='IT' OR [Department]='Finance' OR [Salary] < 30000")

Question 75

Which variable field is optional when creating a variable, in UiPath Studio?

Options:

A.

Default

B.

Variable type

C.

Name

D.

Scope

Question 76

Which activity can be used to transition a Background Process to Foreground?

Options:

A.

Use Foreground

B.

Activate

C.

Maximize Window

D.

Set Focus

Page: 1 / 25
Total 254 questions