How can you pass data between workflows?
Options are :
Answer : A
A developer wants to use separate user data folders for browsers in the Main and PiP sessions. What is the correct setting of the UserDataFolderMode property on the Open Browser activity?
Answer : B
A developer extracts data about employees from an Excel workbook. The developer uses the following expression to filter the extracted datatable.
extractedDataTable.Select("[Age]>=21 AND ([Education]='Master' OR [Salary]>100000) AND [Education]='Bachelor'")
How many rows will be returned as the result of the filtering?
Please find below the worksheet with data.

Answer : D
The expression[Education]='Master' OR [Salary]>100000would return all rows except for 4 and 9.
Next,[Age]>=21would also eliminate rows 8 and 10.
Out of the remaining rows, only row 3 has a Bachelor degree, so[Education]='Bachelor'would leave only that 1 row.
UiPath forum
Exam Topic:Describe how to initialize variables such as lists and datatables, and how to filter datatables
A developer wants to use an Anchor Base activity to search for a UI element by using another UI element as an anchor.
What activity can be used to provide an anchor?
Answer : A
Find Image would return a UI element that can be used as an anchor.
UiPath Documentation
Exam Topic:Describe how Tags and Attributes, Dynamic Selectors, Anchor Base, etc. are used in UI Explorer to create a robust selector in the Default, Active Accessibility, or UI Automation frameworks
Please choosethe correctstatement about the usage of wildcards in selectors.
Answer : B
Wildcards are symbols that enable you to replace zero or multiple characters in a string. These can be quite useful when dealing with dynamically-changing attributes in a selector.
Asterisk (*) -- replaces zero or more characters
Question mark (?) -- replaces a single character
In the UiPath Robotic Enterprise Framework template, what should be the outcome of the Process Transaction state of the Main workflow when the application loops back to the Get Transaction Item state?
Options are :
Answer : B, C
Which of the following types of variables can be defined in UiPath Studio?
Options are :
Answer : A, B