00:00

QUESTION 51

Where can a developer identify the time taken by each process in a transaction using Developer Console log inspector?

Correct Answer: C

QUESTION 52

A developer uses a before insert trigger on the Lead object to fetch the Territory c object, where the Territory c.PostalCode c matches the Lead.PostalCode. The code fails when the developer uses the Apex Data Loader to insert 10,000 Lead records. The developer has the following code block: Line-01: for (Lead l : Trigger.new){Line-02: if (l.PostalCode != null) {Line-03: List terrList = [SELECT Id FROM Territory c WHERE PostalCode c = :l.PostalCode];Line-04: if(terrList.size() > 0) Line-05: l.Territory c = terrList[0].Id; Line-06: }Line-07: }Which line of code is causing the code block to fail?

Correct Answer: A

QUESTION 53

Which user can edit a record after it has been locked for approval? (Choose 2)

Correct Answer: BD

QUESTION 54

Which two number expression evaluate correctly? Choose 2 answers

Correct Answer: BD