UiPath RPA Associate Certification Exam

अब Quizwiz के साथ अपने होमवर्क और परीक्षाओं को एस करें!

A developer wants to remove the company name from the "UiPath Certification" string. Which string function will return "Certification?"

"UiPath Certification".Substring(6).Trim

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

1. In Progress 2. Failed 3. Retried 4. Successful

A developer finished 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?

1. Select "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 at the invoked workflows that contain the errors. 4. Run in Debug mode

Based on the graphic, what is the output at runtime? Split String Value strValue="2020"

<blank> 0 0

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

<html app='chrome.exe' title='Release History - UiPath Platform' /> <webctrl parentid='confluence-ui' tag='SPAN' idx='94' />

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

? and *

A developer successfully published a packed from Studio to Orchestrator. The developer did not make any changes and published again successfully. What happens in Orchestrator?

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

What is a characteristic of an "asset"?

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

What is a unique feature of the UI Explorer tool?

Allows the developer to view the full UI hierarchy tree

A developer has created an automation process that includes: 1. Main .xaml file Invoke SuperMarket workflow "Supermarket.xaml" Write Line Text: Fruits Based on the information shown in the graphics, what is the output of the Write Line activity in the Main.xaml file?

Apple

What describes a characteristic of a UiPath robot? *Attended and Studio robots can be used without a password *No specific permission is required for the user to create a robot *Robots cannot be deleted if they do not have any pending or active jobs attached to them *Standard robots can work on both standard machines and templates.

Attended and Studio robots can be used without a password.

Which type(s) of automation does UiPath support?

Attended, Hybrid, and Unattended automation

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

Breakpoint will have no impact on the process execution.

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

DataTable

A developer has added an Invoke Workflow File activity in Main.xaml to invoke the ProcessInvoices.xaml workflow. The developer needs to pass a DataTable called invoices_DT from Main.xaml to ProcessInvoices.xaml. Which action needs to be performed?

Declare an "in" argument in ProcessInvoices.xaml

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

Default

What is the main feature of a flowchart?

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

What is a feature of the Native screen scraping method?

Extracts Text Position

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

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

A developer discovered that a reliable selector is unavailable for a UI element 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?

Find Children

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

Find Image or Find Element

What are the differences between full selectors and partial selectors?

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

Which activity is used to get and filter mail messages?

Get Outlook Mail Messages

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

Get Row Item

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

HasHeaders

Review the following graphic: Sequence Assign str_Item str_item=arr_items(1) Test Based on the graphic, what is the output of the workflow?

IndexOutOfRangeException

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

Input, Output, and Input/Output arguments

Which elements must exist for each Dictionary object?

Key and Value

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?

Now.ToString("dd-MM-yyyy")

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

One for the entire project

What describes the function of UiPath version control?

Provides a developer an effective way to create larger projects that require collaboration between multiple users.

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. What is the correct sequence in which the robot will select the items to process?

Ref1 (high with deadline), Ref3 (Normal with deadline), Ref2 (normal with deadline), Ref4 (high but no deadline)

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

Running and Pending

Which function does the Anchor Base activity provide?

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

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

Sort Table

Which function(s) is available with an attended robot? -Ability to continue execution under a locked screen -Used for debugging and testing purposes -Started from the robot try or command prompt -Responsible for remote execution, monitoring, and scheduling

Started from the robot tray or command prompt.

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 names of the months?

String[]

A developer needs to design a process in the following way: 1. The process needs to validate the Payment Status field 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?

Switch

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

System.Net.Mail.MailMessage

Which argument type does the selector property accept?

System.String

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 Customer Id to the call center representative. 2. The call center representative inputs the Customer ID into a web application. 3. Data is scraped from the web application. 4. Calculations are performed by the robot. 5. The outstanding amount is provided to the customer over the telephone by the representative. if this process is automated, what is the minimum number of steps that require manual intervention?

Three, because steps 3 and 4 are automated.

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

UiPath Studio

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

Use Regular Expressions

What describes an Anchor Base activity in UiPath Studio?

Used to interact with an element that has an unstable selector

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

Using the Invoke Workflow File activity

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

Using the UI Explorer tool

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

Variables

What are the differences between variables and arguments?

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

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?

While

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

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

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

Yes; any version of a package can be downloaded


संबंधित स्टडी सेट्स

Marking Period 4, Chem Quarterly

View Set

Factor markets and labor market inefficiencies

View Set

American Politics Chapter 14 Pre and Post Test

View Set

Ch 16: Speaking for Special Occasions and Purposes, COM 181: Basic Public Speaking

View Set