Courseiva
Process Automation And LogichardMultiple ChoiceObjective-mapped

SALESFORCE-PD1 Process Automation And Logic Practice Question

A developer has an Apex trigger that fires on Account update. Inside the trigger, it calls a future method to update related Contact records. During testing with 150 Account records modified simultaneously, the developer receives a System.LimitException: Too many future calls. What is the cause of this exception?

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

The trigger exceeded the maximum limit of 50 future method calls per Apex transaction.

Future methods cannot be called from within other asynchronous contexts or inside triggers when the trigger processes more records than the future call limit allows per transaction (e.g. max 50 future calls per transaction).

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • The total daily asynchronous limit was reached.

    Why it's wrong here

    Incorrect. Daily limits apply across 24 hours, whereas this exception happens immediately per transaction.

  • Future methods cannot be invoked from inside an Apex trigger context.

    Why it's wrong here

    Incorrect. Future methods can be called from triggers, provided the bulk limits are respected.

  • The trigger exceeded the maximum limit of 50 future method calls per Apex transaction.

    Why this is correct

    Correct. Triggers processing bulk updates can easily exceed the per-transaction limit of 50 future calls.

  • The future method tried to execute a SOQL query exceeding the limit.

    Why it's wrong here

    Incorrect. The exception specifically indicates too many future calls were enqueued.

About these practice questions

One of 493 original SALESFORCE-PD1 practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written and reviewed by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

Last reviewed August 2026 · checked against the official Salesforce exam blueprint

This SALESFORCE-PD1 practice question is part of Courseiva's free Salesforce certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SALESFORCE-PD1 exam.