Courseiva
Developer FundamentalshardMultiple SelectObjective-mapped

SALESFORCE-PD1 Developer Fundamentals Practice Question

Which THREE operations will cause an immediate transaction rollback or DML failure when utilizing standard DML statements in Apex? Choose 3 answers.

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

A record failing a validation rule triggered by the DML operation.

Uncaught exceptions, hit governor limits, or triggering record-level validation errors via addError() will fail the transaction or records.

Answer analysis

Option-by-option breakdown

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

  • A record failing a validation rule triggered by the DML operation.

    Why this is correct

    Validation rule failures cause the entire standard DML transaction to roll back.

  • Updating a record that has already been committed in the database.

    Why it's wrong here

    Updating an existing committed record is a normal valid operation.

  • Using the Database.insert(list, false) method with a failing record.

    Why it's wrong here

    Passing false allows partial success, meaning valid records succeed while invalid ones fail without rolling back the whole list.

  • Calling record.addError() inside a trigger context.

    Why this is correct

    addError() rejects the record and aborts the DML operation.

  • Exceeding the maximum heap size limit during processing.

    Why this is correct

    Hitting governor limits like heap size terminates the transaction with an uncatchable LimitException.

About these practice questions

This SALESFORCE-PD1 question is part of Courseiva's 488-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. 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.