Exam UiARD All QuestionsBrowse all questions from this exam
Question 24

A developer uses a Key Press Trigger activity and a Click Trigger activity to monitor events in an application. The two Trigger activities are within the same Trigger Scope activity. Which approach ensures the workflow exits the Trigger Scope activity after any trigger is activated and the associated action is performed?

    Correct Answer: D

    To ensure the workflow exits the Trigger Scope activity after any trigger is activated and the associated action is performed, the correct setting to use is SchedulingMode=OneTime. This configuration ensures that once a trigger is activated and the corresponding action is executed, the Trigger Scope will exit and not wait for further triggers.

Discussion
OnlineOption: D

SchedulingMode.OneTime - Execute one action and exit. https://docs.uipath.com/activities/other/latest/user-guide/trigger-scope

ykwOption: D

Correct answer should be D

bhaskar5a5Option: D

Ans -D

phileraeneOption: C

never use trigger (my bad) but parallel seems a good option

robert_lovaszOption: D

SchedulingMode.OneTime means that if a trigger was 'detected one time' after action block executed, it'll exit the trigger scope (otherwise it was Concurrent, it would repeat the trigger again)

MirjalolOption: D

"Which approach ensures the workflow exits the Trigger Scope activity after ANY TRIGGER is activated and the associated action is performed?" SchedulingMode.OneTime - Execute one action and exit.

RigaOption: D

SchedulingMode.OneTime - Execute one action and exit.

Alan194Option: D

SchedulingMode.OneTime: execute a action and exit

OnlineOption: C

Apologies, C is correct.