Variables, Arguments, and Control Flow in Studio
Consider the array UserNames = { "John", "Jane", "Dave", "Sandra"}. What value will the expression UserNames(1) return?
"Jane"
Consider an Int32 variable (Counter), initially assigned with the value 10. The value decreases by 1 every time a sequence is executed in a Do While activity. How many times will the sequence be executed if the expression in the Condition field of the Do While activity is V > 0?
10
Which of the following tasks can be taken over by RPA robots?
Capture data from text fields Make decisions based on predefined rules Start applications
Which activity can be used to process every item in a collection individually?
For Each
Which one of the following is a data type particular to UiPath and can store any kind of data, including text, numbers, dates, and arrays?
GenericValue
You are saving the input from users to a variable of String type in Main.xaml. The user info is stored in an Excel spreadsheet by a Write Range activity added in WriteData.xaml. WriteData.xaml is invoked in Main.xaml. What direction will your argument have?
In
Match the following variable properties with their definitions:
Name - Defines how the variable will be identified. Type - Defines what kind of data can be stored in the variable. Scope - Defines the part of the workflow where the variable can be used. Default value - Defines the value the variable is initialized with.
When running a job, will all the automation '.xaml' files included in the project be executed?
No, only files linked to the Main.xaml through the Invoke Workflow File activity will be executed.
Fill in the following sentence: " ... are used to pass data from one workflow file to another in UiPath Studio."
Only Arguments
To improve readability, variable and argument names must align to a naming convention. If a variable is written as FirstName, then what is the naming convention followed?
Pascal case
Which of the characteristics below make a process more suitable for RPA automation?
Rule-based Stable Repetitive
How can you create a new variable in UiPath Studio?
Select the Create new Variable option in the Variables panel Press Ctrl+K in an activity input field that requires a variable Press Ctrl+K in an input field that requires a variable in the Properties panel
Match the following UiPath Platform components with the descriptions provided:
UiPath Studio - Designing automation workflows. UiPath Orchestrator - Managing and monitoring the execution of automation. UiPath Robot - Executing automation workflows. UiPath Automation Hub - Documenting automation opportunities and managing them from discovery to implementation.
What is the correct way to concatenate a string variable (Username) with a string (" is online")?
Username + " is online"
Collections are largely used for handling and processing complex data. Which one of the following is the most encountered collection with a dynamic size?
list