Salesforce– category –
-
【Salesforce 認定Platformデベロッパー】試験対策:第2問
問題 LightningコンポーネントからApexメソッドおよびプロパティへのアクセスを可能にするアノテーションはどれですか。 @RestResource @AuraEnabled @RemoteAction @Httplnvocable 正解 @RestResource @AuraEnabled @RemoteAction @HttpInvocable 解説 □ ... -
【Salesforce 認定Platformデベロッパー】試験対策:第1問
問題 デバッグログに書き込まれるときのxの値は何ですか。 Integer x = 0; do { x = 1; x++; } while (x < 1); System.debug(x); 0 1 2 3 正解 0 1 2 3 解説 デバッグログには 2 が表示されます。 以下がコードの実行フローです。 x の初期値は0です。 ...