開発者は、外部 Web サービスへのコールアウトを行う必要があるコードを作成しています。 コールアウトを非同期メソッドで行う必要があるのはどのシナリオですか?
正解:A
Callouts cannot be made from a synchronous context such as an Apex trigger because they might exceed the maximum execution time, leading to timeouts. Asynchronous methods, such as future or Queueable, are required to handle callouts from triggers.References: Apex Developer Guide - Asynchronous Apex