Interview questions and answers for RPA - UiPath (Set 11)

uipath interview questions
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
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
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

Popular posts from this blog

UiPath - Convert String to DateTime

UiPath - Initialize Array and Assign value to Array

UiPath - Initialize List and Assign Values to List