Interview questions and answers for RPA - UiPath (Set 11)
UiPath Interview Questions and Answers |
Q- How to pass variables in selectors in UiPath?
We need to pass the entire selector through a variable of string datatype.
Q- Which template is suitable for large scale deployment in UiPath?
REFramework – Robotic Enterprise Framework
Q- What is the difference between array and list?
- Array – It is a type of variable which enables us to store multiple values of the same type. Array has fixed number of elements.
- List – List is a collection that doesn’t have the fixed number of elements.
Q- How to initialize array in UiPath?
In assign activity, use below code:
arrayVarName = new String(){}
UiPath Initialize String Array |
Q- How to initialize list in UiPath?
In assign activity, use below code:
listVarName = new List(Of String)
UiPath Initialize List of String |
Note: Fresher candidates can skip REFramework and/or Orchestrator based questions.
Previous - UiPath interview questions Set 10
Next - UiPath interview questions Set 12
Comments
Post a Comment