Uipath Associate RPA cards Flashcards

1
Q

Which function(s) is available with an attended robot?

A. Started from the robot tray and command prompt

A

Started from the robot tray and command prompt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

A customer calls into a Call Center to get an update on their current outstanding payment.
consider the following use case:

  1. The customer provides the Cust. ID to the Rep.
  2. The Rep inputs the Cust. ID into a web application.
    3 Data is scraped from the web application.
  3. Calculations are performed by the robot.
  4. the outstanding amount is provided to the customer over the telephone by the Rep.

If this process is automated, what is the minimum number of steps that require manual intervention?

A

Three

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Which types(s) of automation does UiPath support?

A. Attended, Hybrid , and Unattended automation

A

Attended, Hybrid , and Unattended automation

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Which component of the UiPath platform is used to develop workflows?

A. UiPath Studio

A

UiPath Studio

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What describes a characteristic of a UiPath robot?

A. Attended and Studio robots can be used without a password

A

Attended and Studio robots can be used without a password

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

During development, a breakpoint is enabled at a particular activity. Later, the developer published the package to UiPath Orchestrator 2019.10. When the process runs form a robot in an UNATTENDED mode, what is the expected behavior?

A. Breakpoint will have no impact on the process execution.

A

Breakpoint will have no impact on the process execution.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

A developer finish creating a workflow. Based on debugging best practices, what is the correct sequence of steps that should be performed to test and debug any resulting errors?

A
  1. “Validate” from the Execute tab and remove any validation errors
  2. Run the workflow and find the execution errors
  3. Add breakpoints at the activities throwing the exceptions and the invoked workflows that contain errors
  4. Run in Debug mode
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What describes the function of UiPath version control?

A. An effective way to create larger projects that require collaboration between multiple users

A

An effective way to create larger projects that require collaboration between multiple users.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Which UiPath Studio panel can be used to change the scope of a variable?

A

Variables

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are the differences between variable and arguments?

A. Variables pass the data between activities inside the workflows.
Arguments pass the data between workflows.

A

Variables pass the data between activities inside the workflows.
Arguments pass the data between workflows.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

A developer has created an automation process that includes:

  1. Main - Sequence = “SuperMarket.xaml”
  2. Write line = Fruits
  3. Fruit variable defaults to “Apple”
  4. “in_ShoppingBasket” can not be assigned to “in_ShoppingBasket” (itself). This wont process
A

Fruit = Apple

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

In UiPath Studio, which argument direction(s) exist?

A

Input, Output, and Input/Output arguments.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Which characters can be used as wildcards while editing a selector?

A

? and *

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How can a full list of attributes of UI elements be displayed?

A

Using the UI Explorer tool

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Which argument type does the selector property accepts?

A. System.String

A

System.String

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What are the differences between full selectors and partial selectors?

A. Full selectors include information about the top-level window.
Partial selectors are recommended to perform multiple actions in the same window.

A

Full selectors include information about the top-level window.
Partial selectors are recommended to perform multiple actions in the same window.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

In UiPath Studio, which activities can be used as an anchor?

A

Find Image or Find Element

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What describes an Anchor Based activity in UiPath Studio?

A. Used to interact with an element that has an unstable selector.

A

Used to interact with an element that has an unstable selector.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

Which function does the Anchor Base activity provide?

A. Searches for an UI element by using another UI element as an anchor and searches the specified area around the anchored element

A

Searches for an UI element by using another UI element as an anchor and searches the specified area around the anchored element

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

Based on best practices, how can another workflow be triggered from within the current one?

A. Using the Invoke Workflow File activity

A

Using the Invoke Workflow File activity

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

What is the main reason of a flowchart?

A. Enable the creation of complex business processes and connect activities in multiple ways by branching multiple logical operators.

A

Enable the creation of complex business processes and connect activities in multiple ways by branching multiple logical operators.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

A developer has a workflow in which the value of a counter needs to be evaluated before the body of the loop is executed. Which Control flow activity should be used?

A

While loop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

A developer need to design a process in the following way:

  1. The process needs to validate the PAYMENT STATUS in an application.
  2. There are three possible values in the PAYMENT STATUS field named: PENDING, PAID, or AWAITING APPROVAL.
  3. For “PENDING”, the process should check the ‘Due Date” field. If the due Date has lapsed, raise an alert. Otherwise, do nothing.
  4. For “Paid”, change the OVERALL STATUS to COMPLETED.
  5. For “Awaiting Approval”, send an alert email to the email address in the ACCOUNT OWNER field.

Based on UiPath best practices, which activity is recommended for designing the process flow for Step 2?

A

Switch

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

Review the following graphics:

  1. Assign - str_item = arr_items
  2. Write line = “Current items” + str_item
  3. Variables = (“test”)

Based on the graphic, what is the output of the workflow?

A. IndexOutOfRangeException

A

IndexOutOfRangeException

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Q

Based on best practices, how many Global Exception Handlers can be set per automation project?

A. One for the entire project.

A

One for the entire project.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
26
Q

What is the correct expression for displaying the current date in the Output panel using a Write Line activity in a “dd-MM-yyyy” format?

A. Now.ToString (“dd-MM-yyyy”)

A

Now.ToString (“dd-MM-yyyy”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
27
Q

Based on the graphic, what is the output at runtime?

  1. Assign - String Value: strValue = “2020”
  2. Assign - String Value: SplitResults = strValue.Split (“2”c) (explanation - “2” is a character so the only variable is 0 and 0)
  3. ForEach: item in SplitResults
  4. Body: Write Line = item.toString

A. 0 0

A

0

0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
28
Q

A developer want to remove the company name from the “UiPath Certification” string. Which string function will return “Certification”?

A. UiPath Certification”.Substring(6).Trim

A

“UiPath Certification”.Substring(6).Trim

29
Q

A developer need to ensure a string has a valid email format. How can this be verified?

A. Use Regular Expressions

A

Use Regular Expressions

30
Q

Which element must exist for each Dictionary object?

A. Key and value

A

Key and value

31
Q

A user needs to download a report for each month of the year and decides to loop over the months using a For Each activity. Which data type is best-suited to hold the values of the name of the months?

A. String [ ]

A

String [ ]

32
Q

Which data type is used for extracting data from a Microsoft Excel file using Read Range activity?

A. Data Table

A

DataTable

33
Q

When reading a CSV file with the Read CSV activity, which property need to be checked in order to include the column names in UiPath Studio 2019.10?

A. HasHeaders

A

HasHeaders

34
Q

Which activity can be used to retrieve the value from a certain cell, from a DataRow object?

A. Get Row item

A

Get Row item

35
Q

Which activity is used to get and filter mail messages?

A. Get Outlook Mail Messages

A

Get Outlook Mail Messages

36
Q

When using for For Each activity to loop through a list of MailMessage variable, how should the TypeArgument property be set?

A. System.Net.Mail.MailMessage

A

System.Net.Mail.MailMessage

37
Q

When using an Excel Application Scope activity, which activity should be used to sort a table directly in a .xlsx file?

A. Sort Table

A

Sort Table

38
Q

What describes the file access level needed when using the Workbook Read Range activity?

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

A

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

39
Q

A user wants to write a data table to an .xlsx file; however, the does not exist. What will happen if the Excel Write Range activity is used to write the data table?

A. File will be created and the data will be located in the file

A

File will be created and the data will be located in the file

40
Q

What is the feature of the Native screen scraping method?

A. Extracts Text Position

A

Extracts Text Position

41
Q

Which job status(es) will prevent the deletion of an associated robot?

A. Running and Pending

A

Running and Pending

41
Q

What is is the correct sequence of statuses if all statuses are involved in the Transaction execution of a Queue item?

A. 1. In Progress

  1. Failed
  2. Retried
  3. Successful
A
  1. In Progress
  2. Failed
  3. Retried
  4. Successful
42
Q

A robot processes the items from a queue on 2020-04-21 with the Queue items having the properties as shown in the following graphic:

Reference. | Deadline. | Priority
—- |.
Ref1 |. 2020-04-22. |. high
Ref2 |. 2020-04-22. | Normal
Ref3 |. 2020-04-21. |. Normal
Ref4 | |. high

What is the correct sequence in which the robot will select the item to process?

A

Ref1 - 1
Ref2 - 3
Ref3 - 2
Ref4 - 4

43
Q

What is the characteristic of an “asset”?

A. All credentials stored as an asset are encrypted with the AES 256 algorithm.

A

All credentials stored as an asset are encrypted with the AES 256 algorithm.

44
Q

Can a package be downloaded from Orchestrator 2019.10 assuming the necessary permissions are granted?

A. Yes, any version of a package can be downloaded

A

Yes, any version of a package can be downloaded

45
Q

A developer successfully published a package from Studio 2019.10 to Orchestrator 20190.10. The developer did not make any changes and published again successfully.

What happens to Orchestrator?

A. A new version of the project is sent to Orchestrator but is not set as the active version

A

A new version of the project is sent to Orchestrator but is not set as the active version.

46
Q

A developer need to create a variable to store the value of an email address. Which variable property or field is optional?

A. Default

A

Default

47
Q

What is a unique feature of the UI Explorer tool?

A. Allows the developer to view the full UI hierarchy tree.

A

Allows the developer to view the full UI hierarchy tree.

48
Q

In order to ensure a robust and stable automation, which selector should be modified based on UiPath best practices?

A. The one with “idx=’94’ />

A

The one with “idx=’94’ />

49
Q

A developer discovered that a reliable selector is unavailable for a UI that represents a button within a table. To ensure interaction with the button, which activity should be used to increase the reliability of the automation?

A. Find children

A

Find children

50
Q

A developer has added an Invoke Workflow file activity in Main.xaml to invoke the ProcessInvoices.xaml workflow. They need to pass a DataTable called invoices_DT from Main.xaml to ProcessInvoices.xaml.

Which action need to be performed?

A. Declare an “in” argument in ProcessInvoices.xaml

A

Declare an “in” argument in ProcessInvoices.xaml.

51
Q

What do the Items in the Orchestrator queues consist of?

All of the above

A

All of the above

52
Q

What should you do to check whether the file has been fully downloaded before continuing the process?

A. Use the Element Exist activity and indicate the download pop-up window

A

Use the Element Exist activity and indicate the download pop-up window.

53
Q

Which of the following task can be automated using StudioX?

A. All, but CANNOT create a powerpoint presentation using info from a word file

A

All, but CANNOT create a powerpoint presentation using info from a word file

54
Q

How do you overwrite the last commit to a GIT repo in UiPath Studio?

A. By selecting Amend Commit in the Commit Changes window

A

By selecting Amend Commit in the Commit Changes window

55
Q

Changing a variable in the immediate panel will be reflected where? (Select three)

A. The watch panel
The further execution of the workflow in debug mode
The local panel

A

The watch panel
The further execution of the workflow in debug mode
The local panel

56
Q

What type of project is the REFramework built on?

A. State machine

A

State machine

57
Q

What action should a bot developer take to skip a step in a workflow temporarily once it has already been successfully tested?

Step over

A

Step over

58
Q

UiPath Studio supports which of the following source control systems? (select all that apply)

A. Git, TFS and SVN

A

Git, TFS and SVN

59
Q

what are the uses of Web Scraping in UiPath?

A. Extracting list or other structured data from a webpage

A

Extracting list or other structured data from a webpage

60
Q

In UiPath, the manipulating lists can be done using; (select two)

A. .NET and Collections

A

.NET and Collections

61
Q

Which of the nodes of a selector is referred to as the “root node”?

A. The highest-level node, corresponding to the application

A

The highest-level node, corresponding to the application

62
Q

How can you trigger another workflow from within your current workflow?

A. By using the invoke workflow file activity

A

By using the invoke workflow file activity

63
Q

How should the Dispatcher & Performer model be applied?

A. The jobs should run independently on separate machines

A

The jobs should run independently on separate machines

64
Q

A developer need to read data from an .xlsx file on a machine that doesnt not have Excel installed, How can this be achieved?

A. Use a System –> File –> Workbook –> Read Range activity

A

Use a System –> File –> Workbook –> Read Range activity

65
Q

How to send a message without having credentials of the email account?

A. Send Outlook Mail message

A

Send Outlook Mail message

66
Q

When a Click on a Ui Element is not always available, you should?

A. Place the Click activity inside a Try/Catch block

A

Place the Click activity inside a Try/Catch block

67
Q

The TransactionNumber global variable incremented by default?

A. SetTransactionStatus workflow

A

SetTransactionStatus workflow

68
Q

Which of the following input methods works in the background?

A