Uipath Associate RPA cards Flashcards
Which function(s) is available with an attended robot?
A. Started from the robot tray and command prompt
Started from the robot tray and command prompt
A customer calls into a Call Center to get an update on their current outstanding payment.
consider the following use case:
- The customer provides the Cust. ID to the Rep.
- The Rep inputs the Cust. ID into a web application.
3 Data is scraped from the web application. - Calculations are performed by the robot.
- 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?
Three
Which types(s) of automation does UiPath support?
A. Attended, Hybrid , and Unattended automation
Attended, Hybrid , and Unattended automation
Which component of the UiPath platform is used to develop workflows?
A. UiPath Studio
UiPath Studio
What describes a characteristic of a UiPath robot?
A. Attended and Studio robots can be used without a password
Attended and Studio robots can be used without a password
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.
Breakpoint will have no impact on the process execution.
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?
- “Validate” from the Execute tab and remove any validation errors
- Run the workflow and find the execution errors
- Add breakpoints at the activities throwing the exceptions and the invoked workflows that contain errors
- Run in Debug mode
What describes the function of UiPath version control?
A. An effective way to create larger projects that require collaboration between multiple users
An effective way to create larger projects that require collaboration between multiple users.
Which UiPath Studio panel can be used to change the scope of a variable?
Variables
What are the differences between variable and arguments?
A. Variables pass the data between activities inside the workflows.
Arguments pass the data between workflows.
Variables pass the data between activities inside the workflows.
Arguments pass the data between workflows.
A developer has created an automation process that includes:
- Main - Sequence = “SuperMarket.xaml”
- Write line = Fruits
- Fruit variable defaults to “Apple”
- “in_ShoppingBasket” can not be assigned to “in_ShoppingBasket” (itself). This wont process
Fruit = Apple
In UiPath Studio, which argument direction(s) exist?
Input, Output, and Input/Output arguments.
Which characters can be used as wildcards while editing a selector?
? and *
How can a full list of attributes of UI elements be displayed?
Using the UI Explorer tool
Which argument type does the selector property accepts?
A. System.String
System.String
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.
Full selectors include information about the top-level window.
Partial selectors are recommended to perform multiple actions in the same window.
In UiPath Studio, which activities can be used as an anchor?
Find Image or Find Element
What describes an Anchor Based activity in UiPath Studio?
A. Used to interact with an element that has an unstable selector.
Used to interact with an element that has an unstable selector.
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
Searches for an UI element by using another UI element as an anchor and searches the specified area around the anchored element
Based on best practices, how can another workflow be triggered from within the current one?
A. Using the Invoke Workflow File activity
Using the Invoke Workflow File activity
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.
Enable the creation of complex business processes and connect activities in multiple ways by branching multiple logical operators.
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 loop
A developer need to design a process in the following way:
- The process needs to validate the PAYMENT STATUS in an application.
- There are three possible values in the PAYMENT STATUS field named: PENDING, PAID, or AWAITING APPROVAL.
- For “PENDING”, the process should check the ‘Due Date” field. If the due Date has lapsed, raise an alert. Otherwise, do nothing.
- For “Paid”, change the OVERALL STATUS to COMPLETED.
- 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
Review the following graphics:
- Assign - str_item = arr_items
- Write line = “Current items” + str_item
- Variables = (“test”)
Based on the graphic, what is the output of the workflow?
A. IndexOutOfRangeException
IndexOutOfRangeException
Based on best practices, how many Global Exception Handlers can be set per automation project?
A. One for the entire project.
One for the entire project.
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”)
Now.ToString (“dd-MM-yyyy”)
Based on the graphic, what is the output at runtime?
- Assign - String Value: strValue = “2020”
- Assign - String Value: SplitResults = strValue.Split (“2”c) (explanation - “2” is a character so the only variable is 0 and 0)
- ForEach: item in SplitResults
- Body: Write Line = item.toString
A. 0 0
0
0
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
“UiPath Certification”.Substring(6).Trim
A developer need to ensure a string has a valid email format. How can this be verified?
A. Use Regular Expressions
Use Regular Expressions
Which element must exist for each Dictionary object?
A. Key and value
Key and value
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 [ ]
String [ ]
Which data type is used for extracting data from a Microsoft Excel file using Read Range activity?
A. Data Table
DataTable
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
HasHeaders
Which activity can be used to retrieve the value from a certain cell, from a DataRow object?
A. Get Row item
Get Row item
Which activity is used to get and filter mail messages?
A. Get Outlook Mail Messages
Get Outlook Mail Messages
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
System.Net.Mail.MailMessage
When using an Excel Application Scope activity, which activity should be used to sort a table directly in a .xlsx file?
A. Sort Table
Sort Table
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
Works with .xlsx files and Excel does not need to be installed
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
File will be created and the data will be located in the file
What is the feature of the Native screen scraping method?
A. Extracts Text Position
Extracts Text Position
Which job status(es) will prevent the deletion of an associated robot?
A. Running and Pending
Running and Pending
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
- Failed
- Retried
- Successful
- In Progress
- Failed
- Retried
- Successful
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?
Ref1 - 1
Ref2 - 3
Ref3 - 2
Ref4 - 4
What is the characteristic of an “asset”?
A. All credentials stored as an asset are encrypted with the AES 256 algorithm.
All credentials stored as an asset are encrypted with the AES 256 algorithm.
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
Yes, any version of a package can be downloaded
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 new version of the project is sent to Orchestrator but is not set as the active version.
A developer need to create a variable to store the value of an email address. Which variable property or field is optional?
A. Default
Default
What is a unique feature of the UI Explorer tool?
A. Allows the developer to view the full UI hierarchy tree.
Allows the developer to view the full UI hierarchy tree.
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’ />
The one with “idx=’94’ />
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
Find children
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
Declare an “in” argument in ProcessInvoices.xaml.
What do the Items in the Orchestrator queues consist of?
All of the above
All of the above
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
Use the Element Exist activity and indicate the download pop-up window.
Which of the following task can be automated using StudioX?
A. All, but CANNOT create a powerpoint presentation using info from a word file
All, but CANNOT create a powerpoint presentation using info from a word file
How do you overwrite the last commit to a GIT repo in UiPath Studio?
A. By selecting Amend Commit in the Commit Changes window
By selecting Amend Commit in the Commit Changes window
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
The watch panel
The further execution of the workflow in debug mode
The local panel
What type of project is the REFramework built on?
A. State machine
State machine
What action should a bot developer take to skip a step in a workflow temporarily once it has already been successfully tested?
Step over
Step over
UiPath Studio supports which of the following source control systems? (select all that apply)
A. Git, TFS and SVN
Git, TFS and SVN
what are the uses of Web Scraping in UiPath?
A. Extracting list or other structured data from a webpage
Extracting list or other structured data from a webpage
In UiPath, the manipulating lists can be done using; (select two)
A. .NET and Collections
.NET and Collections
Which of the nodes of a selector is referred to as the “root node”?
A. The highest-level node, corresponding to the application
The highest-level node, corresponding to the application
How can you trigger another workflow from within your current workflow?
A. By using the invoke workflow file activity
By using the invoke workflow file activity
How should the Dispatcher & Performer model be applied?
A. The jobs should run independently on separate machines
The jobs should run independently on separate machines
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
Use a System –> File –> Workbook –> Read Range activity
How to send a message without having credentials of the email account?
A. Send Outlook Mail message
Send Outlook Mail message
When a Click on a Ui Element is not always available, you should?
A. Place the Click activity inside a Try/Catch block
Place the Click activity inside a Try/Catch block
The TransactionNumber global variable incremented by default?
A. SetTransactionStatus workflow
SetTransactionStatus workflow
Which of the following input methods works in the background?