Question: 1
What can a Lightning Component contain in its resource bundle? Choose 2 answer
Question: 2
The initial value for a number field on a record is 1. A user updated the value of the number field to 10. This action invokes a workflow field update, which changes the value of the number field to 11. After the workflow field update, an update trigger fires.What is the value of the number field of the object that is obtained from Trigger.old?
Question: 3
How can a developer retrieve all Opportunity record type labels to populate a list collection?Choose 2 answers
Question: 4
What is a benefit of the Lightning Component framework?Choose 3 answers
Question: 5
A developer creates an Apex Trigger with the following code block:List<Account> customers = new List<Account>();For (Order__c o: trigger.new){Account a = [SELECT Id, Is_Customer__c FROM Account WHERE Id =
:o.Customer__c];a.Is_Customer__c = true;customers.add(a);}Database.update(customers, false);The developer tests the code using Apex Data Loader and successfully loads 10 Orders. Then, the developer loads 150
Orders.How many Orders are successfully loaded when the developer attempts to load the 150 Orders?