開発者は、プロジェクトのエラー処理メカニズムとしてグローバル例外ハンドラーを使用しています。デフォルトでは、グローバル例外ハンドラーはエラーをスローし続けるアクティビティを何回再試行しますか?
正解:B
Explanation
The Global Exception Handler is an error handling mechanism for a project. By default, it retries an activity that continually throws an error 3 times. The Global Exception Handler is a workflow that is executed when an exception occurs in the project. It allows the developer to define custom actions for handling different types of exceptions, such as logging, retrying, aborting, or continuing the execution1. When the Global Exception Handler encounters an exception, it logs the name of the activity which faulted and starts retrying the activity three times. If it encounters the same exception each time and the number of retries reaches 3, the execution is aborted at the level of the activity which threw the exception2. The number of retries can be modified by changing the value of the RetryCount variable in the Global Exception Handler workflow3. References: Global Exception Handler and Global Handler for Exceptions from UiPath documentation and Marketplace.