Question: 1
A developer needs to import customer subscription records into salesforce and attach them to existing account records. Which 2 actions should the developer take to ensure the subscription records are related to the correct account records? Choose 2 answers
Question: 2
A developer runs the following anonymous code block in a Salesforce org with 100 accounts List acc= {select id from account limit 10}; delete acc; database.emptyrecyclebin(acc); system.debug(limits.getlimitqueries()+' ,'+Limits.getlimitDMLStatements()); What is the debug output?
Question: 3
Which type of code represents the view in the MVC architecture on the Force.com platform?
Question: 4
Which two statement can a developer use to throw a custom exception of type MissingFieldValueException?Choose 2 answers
Question: 5
How can a developer use a Set<Id> to limit the number of records returned by a SOQL query?