Question 71
What must the Controller for a Visualforce page utilize to override the Standard Opportunity view button?
Question 72
Which two sosl searches will return records matching search criteria contained in any of the searchable text fields on an object? choose 2 answers
Question 73
A developer created a Visualforce page and custom controller to display the account type field as shown below. Custom controller code: public class customCtrlr{ private Account theAccount; public String actType; public customCtrlr() { theAccount = [SELECT Id, Type FROM Account WHERE Id = :apexPages.currentPage().getParameters().get('id')]; actType = theAccount.Type; } } Visualforce page snippet: The Account Type is {!actType} The value of the account type field is not being displayed correctly on the page. Assuming the custom controller is property referenced on the Visualforce page, what should the developer do to correct the problem?
Question 74
A developer created a Visualforce page and a custom controller with methods to handle different buttons and events that can occur on the page.
What should the developer do to deploy to production?
What should the developer do to deploy to production?
Question 75
What is the result of the debug statements in testMethod3 when you create test data using testSetup in below code?


