What does the Lightning Component framework provide to developers?

What does the Lightning Component framework provide to developers?A . Extended governor limits for applicationsB . Prebuilt component that can be reused.C . Templates to create custom components.D . Support for Classic and Lightning UIView AnswerAnswer: B

January 17, 2021 No Comments READ MORE +

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...

January 17, 2021 No Comments READ MORE +

What should a developer use to obtain the Id and Name of all the Leads. Accounts, and Contacts that hove the company name "Universal Containers"?

What should a developer use to obtain the Id and Name of all the Leads. Accounts, and Contacts that hove the company name "Universal Containers"?A . FIND 'Universal Containers' IN Name Fields RETURNING leadjid, name), accounted, name), contacted, name)B . FIND Universal Containers' IN CompanyName Fietds RETURNING lead{ld. name), accounted,...

January 17, 2021 No Comments READ MORE +

Which automation tool meets these requirements?

A developer needs to implement the functionality for a service agent to gather multiple pieces of information from a customer in order to send a replacement credit card. Which automation tool meets these requirements?A . Flow BuilderView AnswerAnswer: A

January 16, 2021 No Comments READ MORE +

which statement is true regarding execution order when triggers are associated to the same object and event?

which statement is true regarding execution order when triggers are associated to the same object and event?A . Trigger execution order cannot be guaranteed.B . executed In the order they are modified.C . Triggers are executed alphabetically by trigger name.D . Triggers are executed in the order they are created.View...

January 16, 2021 No Comments READ MORE +

How many accounts will be inserted by the following block ofcode? for(Integer i = 0 ; i < 500; i++) { Account a = new Account(Name='New Account ' + i); insert a; }

How many accounts will be inserted by the following block ofcode? for(Integer i = 0 ; i < 500; i++) { Account a = new Account(Name='New Account ' + i); insert a; }A . 150B . 0C . 500D . 100View AnswerAnswer: B

January 16, 2021 No Comments READ MORE +

Why did the test method fail in the sandbox and pass in the Developer Console?

A developer observes that an Apex test method fails in the Sandbox. To identify the issue, the developer copies the code inside the test method and executes it via the Execute Anonymous tool in the Developer Console. The code then executes with no exceptions or errors. Why did the test...

January 16, 2021 No Comments READ MORE +

What is the correct implementation?

An org tracks customer orders on an Order object and the items of an Order on the Line Item object. The Line Item object has a MasterDetail relationship to the order object. A developer has a requirement to calculate the order amount on an Order and the line amount on...

January 15, 2021 No Comments READ MORE +

What are three ways for a developer to execute tests in an org? Choose 3.

What are three ways for a developer to execute tests in an org? Choose 3.A . Bulk APIB . Tooling APIC . Setup MenuD . Salesforce DXE . Metadata APView AnswerAnswer: B,C,D Explanation: https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_testing.htm https://developer.salesforce.com/docs/atlas.en-us.api_tooling.meta/api_tooling/tooling_api_objects_apextestsuite.htm

January 15, 2021 No Comments READ MORE +

Which type of org is best suited for this scenario?

A team of many developers work in their own individual orgs that have the same configuration at the production org. Which type of org is best suited for this scenario?A . Developer SandboxB . Developer EditionC . Full SandboxD . Partner Developer EditionView AnswerAnswer: B

January 15, 2021 No Comments READ MORE +