Question: 1
A developer can use the debug log to see which three types of information? Choose 3 answers
Question: 2
The account object has a custom percent field, rating, defined with a length of 2 with 0 decimal places. An account record has the value of 50% in its rating field and is processed in the apex code below after being retrieved from the database with SOQL public void processaccount(){ decimal acctscore = acc.rating__c * 100; } what is the value of acctscore after this code executes?
Question: 3
A developer needs to create a custom visualforce button for the opportunity object page layout that will cause a web service to be called and redirect the user to a new page when clicked. Which three attributes need to be defined in the tag of the visualforce page to enable this functionality?
Question: 4
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 } } }
Question: 5
What are two characteristics of partial copy sandboxes versus full sandboxes? Choose 2 answers