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?
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?
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.
How 'Delay' why not ' DO While' Status = Hold
Delay will execute only once
Keyweord is "every" so it should be looped. A is the answer
Action is repetitive, so a loop would be needed. "A. Do While" should be the answer.
This needs to be executed in a loop so Do While would be needed. Delay is just a one off thing