UiPath Automation Developer Professional v1 — Question 106
What is the recommended approach for handling tabular data when building a REFramework transactional project in UiPath?
Answer options
- A. Utilize a DataTable variable to store and process the tabular data.
- B. Save the tabular data in multiple CSV files for easier manipulation.
- C. Use separate variables to store each column of the tabular data.
- D. Implement custom activities to handle the tabular data.
Correct answer: A
Explanation
The recommended approach is to utilize a DataTable variable, as it efficiently handles and processes tabular data with built-in functionalities. Saving data in multiple CSV files complicates access and manipulation, using separate variables for each column is less efficient and less organized, while implementing custom activities may add unnecessary complexity when a DataTable suffices.