Refer to re code segment above.
When following best practices for writing Apex taggers, which two lots are wrong or cause for concern? Choose 2 answers
A. Line 6 B. Line 11
C. Line 16
D. Line 20
A developer is asked to develop a new AppExchange application. A feature of the program creates Survey records when a Case reaches a certain stage and is of a certain Record Type. This feature needs to be configurable, as different Salesforce instances require Surveys at different times. Additionally, the out-of-the-box AppExchange app needs to come with a set of best practice settings that apply to most customers.
What should the developer use to store and package the custom configuration settings for the app?
A. Custom Settings
B. Custom Metadata
C. Custom Objects
D. Process Builder
A developer created three Rollup Summary fields: Total_timesheets_c, Total_Approved_timesheet_c and Total_project_Timesheet_c in the custom object, project _c Now, the developer is tasked with created a new field to show the ratio between and approved
A. No test methods will be executed during deployment.
B. A test class that validates the formula field is needed for deployment.
C. Using a formula field reduces maintenance overhead.
D. A formula field will calculate the value retroactively for existing records.
In an organization that has multi-currency enabled, a developer is tasked with building a Lighting Component that displays the top ten Opportunities most recently access by the logged in user. The developer must ensure the Amount and
LastModifiedDate field values are displayed according to the user's locale.
What is the most effective approach to ensure values displayed respect the users locale settings?
A. Use the FOR VIEW clause in the SOQL Query.
B. Use REGEX expressions to format the values retrieved via SOQL.
C. Use the FORMAT() function in the SOQL query.
D. Use a wrapper class to format the values retrieved via SOQL.
A Visualforce page needs to make a callout to get billing information and tax information from two different REST endpoints. The information needs to be displayed to the user at the same time and the return value of the billing information contains the input for the tax information callout. Each endpoint might take up to two minutes to process.
How should a developer implement the callouts?
A. A Continuation for both the billing callout and the tax callout
B. An HTTP REST call out for both the billing callout and the tax callout
C. An HTTP REST callout for the billing callout and a Continuation for the tax callout
D. A Continuation for the billing callout and an HTTP REST callout for the tax callout
This sales team needs a custom Visualforce page to enter sales orders. When a product is selected on the Visualforce page, a web service is invoked to determine if the product is in stock, and the result is displayed on the page. How can a developer write this page to display the result of the web service and ensure governor limits for concurrent usage are not exceeded?
A. Use Continuation that is invoked when a Submit button is clicked.
B. Use visualforce Remoting to handle the web service callout.
C. Use the Salesforce Metadata API in the web service callout.
D. Use an Apex trigger with callout=true annotation.
Universal Containers implements a private sharing model for the Convention_Attendence_c custom object. As part of a new quality assurance effort, the company created an Event___Reviewer__c user lookup field on the object. Management wants the event reviewer to automatically gain Read/write access to every record they are assigned to. What is the best approach to ensure the assigned reviewer obtains Read/Write access to the record?
A. Create an After Insert trigger on the Convention Attendee custom object, and use Apex Sharing Reasons and Apex Managed Sharing.
B. Create a Before Insert trigger on the Convention Attendee custom object, and use Apex Sharing Reasons and Apex Managed Sharing.
C. Create a criteria-based sharing rule on the Convention Attendee custom object to share the records the a group of Event Reviewers.
D. Create criteria-based sharing rules on the Convention Attendee custom object to share the records with the Event Reviewers.
What is the best practice to initialize a Visualforce page in a test class?
A. Use Test.setCurrentpage,MyTestPage;
B. Use Test.currentpage, getParameter, put (MyTestPage);
C. Use Test, setCurrentPage(Page.MyTestPage);
D. Use controller,currentPage, setPage (MyTestPage
Universal Containers requested the addition of a third-party Map widget to an existing Lightning web component. Which two actions should the developer take to implement this requirement? Choose 2 answers
A. Import the third-party JavaScript module directly Into the component.
B. Use a content distribution network and Include