Question: 1
The sales team at universal container would like to see a visual indicator appear on both account and opportunity page layout to alert salespeople when an account is late making payments or has entered the collections process. What can a developer implement to achieve this requirement without having to write custom code?
Question: 2
A developer has javascript code that needs to be called by controller functions in multiple components by extending a new abstract component. Which resource in the abstract component bundle allows the developer to achieve this
Question: 3
Which two automation tools include a graphical designer? Choose 2 answers
Question: 4
What are two characteristics of partial copy sandboxes versus full sandboxes? Choose 2 answers
Question: 5
Which action can a developer take to reduce the execution time of the following code? List allaccounts = [select id from account]; list allcontacts = [select id, accountid from contact]; for (account a :allaccounts){ for (contact c:allcontacts){ if(c.accountid = a.id){ //do work } } }