Exam UiRPA All QuestionsBrowse all questions from this exam
Question 24

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?

    Correct Answer: A

    To ensure that a Message Box is displayed every 30 seconds, a repetitive loop is necessary. The 'Do While' activity can be utilized to run a loop that continues to check the condition and execute the desired actions. This way, the process can include a 'Delay' activity within the 'Do While' loop to wait for 30 seconds before displaying the Message Box again, thus achieving the recurring notification needed for the Call Center representative.

Discussion
BotLearnerOption: B

How 'Delay' why not ' DO While' Status = Hold

Rag_123Option: A

Delay will execute only once

johannojOption: A

Keyweord is "every" so it should be looped. A is the answer

Rai16Option: A

Action is repetitive, so a loop would be needed. "A. Do While" should be the answer.

nitinv0078Option: A

This needs to be executed in a loop so Do While would be needed. Delay is just a one off thing