Question: 1
An org has different Apex Classes that provide Account -related functionality.After a new validation rule is added to the object, many of the test methods fail.What can be done to resolve the failures and reduce the
number of code changes needed for future validation rules?Choose 2 answers:
Question: 2
Which requirement needs to be implemented by using standard workflow instead of Process Builder? Choose 2 answers
Question: 3
What would a developer do to update a picklist field on related Opportunity records when a modification to the associated Account record is detected?
Question: 4
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<Territory__c> 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?
Question: 5
What must the Controller for a Visualforce page utilize to override the Standard Opportunity view button?