UiPath RPA Associate (UiRPA) — Question 25
A developer wants a process to display a Message Box every 30 seconds to remind a Call Center representative when a customer is on “hold”. Which activity can be used?
Answer options
- A. Do While
- B. Delay
- C. Comment
- D. Break
Correct answer: A
Explanation
The correct answer is A, Do While, because it allows for repeated execution of an action, making it suitable for showing a Message Box at specified intervals. Options B (Delay) would pause execution but wouldn't repeat the action, C (Comment) is for documentation and doesn't execute any function, and D (Break) is used to exit loops and doesn't fit the requirement of displaying a message repeatedly.