exam questions

Exam CRT-450 All Questions

View all questions & answers for the CRT-450 exam

Exam CRT-450 topic 1 question 335 discussion

Actual exam question from Salesforce's CRT-450
Question #: 335
Topic #: 1
[All CRT-450 Questions]

The following code snippet is executed by a Lightning web component in an environment with more than 2,000 lead records:



Which governor limit will likely be exceeded within the Apex transaction?

  • A. Total number of SOQL queries issued
  • B. Total number of DML statements issued
  • C. Total number of records processed as a result of DML statements
  • D. Total number of records retrieved by SOQL queries
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
smoota
Highly Voted 1 year, 4 months ago
Selected Answer: B
The update statement is in the For loop. And the total allowed DML statements per transaction is 150.
upvoted 8 times
...
RMEZZA
Highly Voted 1 year, 4 months ago
Selected Answer: B
DML limits would be reached first
upvoted 6 times
...
BrucePark
Most Recent 10 months, 2 weeks ago
Selected Answer: D
D is correct. Because it says "more than 2000". It didn't specify the exact number but it could probably be even greater than 10000, which causes SOQL exception while for statement gets processed.
upvoted 1 times
...
tonywang531
1 year, 4 months ago
Selected Answer: C
Correct answer is C, number of max dml processed records is 150
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...