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