Question 76
What are three techniques that a developer can use to invoke an anonymous block of code? (Choose three.)
Question 77
Which two components are available to deploy using the METADATA API? Choose 2 answers
Question 78
From which two locations can a developer determine the overall code coverage for a sandbox? (Choose two.)
Question 79
A developer in a Salesforce org with 100 Accounts executes the following code using the Developer console:Account myAccount = new Account(Name = 'MyAccount');Insert myAccount;For (Integer x = 0; x <
150; x++)
{Account newAccount = new Account (Name='MyAccount' + x);try {Insert newAccount;} catch (Exception ex) {System.debug (ex) ;}}insert new Account (Name='myAccount');How many accounts are in the org after this code is run?
Question 80
Which code block returns the ListView of an Account object usingthe following debug statement?
system.debug(controller.getListViewOptions() );
