Certified Pega Robotics System Architect v8.0 — Question 13
A user access an HTML table with an undefined number of rows and then searches the table to find the row needed to complete the process. You must automate the search and return the result to the user. Which two coding options are available to create the automation? (Choose two.)
Answer options
- A. TableView component
- B. LookupTable component
- C. ForLoop component
- D. Query on a dataCell
Correct answer: B, D
Explanation
The LookupTable component is designed for searching and retrieving data efficiently, making it suitable for this task. The Query on a dataCell allows for direct querying of specific data within the table, which is also effective. The TableView component is more about displaying data rather than searching, and the ForLoop component does not inherently facilitate searching for specific rows in a table.