Which definition of the Apex method, to which the searchResults property is wired, should be used?
A Lightning component has a wired property, searchResults, that stores a list of Opportunities. Which definition of the Apex method, to which the searchResults property is wired, should be used?A . @AuraEnabled(cacheable=true) public static List<Opportunity> search(String term) { /* implementation*/ }B . @AuraEnabled(cacheable=true) public List<Opportunity> search(String term) { /*implementation*/ }C...
Why should the developer choose to use data Loader instead of Data Import Wizard?
A developer wants to import 500 Opportunity records into a sandbox. Why should the developer choose to use data Loader instead of Data Import Wizard?A . Data Loader runs from the developer's browser.B . Data Import Wizard does not support Opportunities.C . Data Loader automatically relates Opportunities to Accounts.D ....
If apex code executes inside the execute() method of an Apex class when implementing the Batchable interface, which statement are true regarding governor limits? Choose 2 answers
If apex code executes inside the execute() method of an Apex class when implementing the Batchable interface, which statement are true regarding governor limits? Choose 2 answersA . The Apex governor limits might be higher due to the asynchronous nature of the transaction.B . The apex governor limits are reset...
What should the developer do to fulfill the business request in the quickest and most effective manner?
Universal Containers has large number of custom applications that were built using a third-party javaScript framework and exposed using Visualforce pages. The Company wants to update these applications to apply styling that resembles the look and feel of Lightning Experience. What should the developer do to fulfill the business request...
Which two statements are accurate regarding Apex classes and interfaces?
Which two statements are accurate regarding Apex classes and interfaces? Choose 2 answersA . Classes are final by default.B . Inner classes are public by default.C . Interface methods are public by default.D . A top-level class can only have one inner class level.View AnswerAnswer: C,D
Which code displays the content of Visualforce page as PDF?
Which code displays the content of Visualforce page as PDF?A . <apex:page renderAs=”pdf”>B . <apex:page readeras’’ application/pdf’’>C . <apex:page readerAs= ‘’application/pdf’’>D . <apex:page contentype ‘’ application/pdf’’)View AnswerAnswer: A
Which approach should a developer use to meet this requirement?
Universal Containers wants to back up all of the data and attachments in its Salesforce org once month. Which approach should a developer use to meet this requirement?A . Use the Data Loader command line.B . Create a Schedulable Apex class.C . Schedule a report.D . Define a Data Export...
Which action may cause triggers to fire?
Which action may cause triggers to fire?A . Updates to Feed ItemsB . Renaming or replacing a picklist entryC . Changing a user's default division when the transfer division option it checkedD . Cascading delete operationsView AnswerAnswer: A
Which is the correct implementation to use the PaymentProcessor interface class?
A developer must implement a CheckPaymentProcessor class that provides check processing payment capabilities that adhere to what defined for payments in the PaymentProcessor interface. public interface PaymentProcessor { void pay(Decimal amount); } Which is the correct implementation to use the PaymentProcessor interface class?A . Public class CheckPaymentProcessor implements PaymentProcessor {...
What are two ways for a developer to execute tests in an org?
What are two ways for a developer to execute tests in an org?A . Tooling APIB . Developer consoleC . Bulk APID . Matadata APIView AnswerAnswer: A,B