When importing and exporting data into Salesforce, which two statements are true? Choose 2 answers
When importing and exporting data into Salesforce, which two statements are true? Choose 2 answersA . Bulk API can be used to import large data volumes in development environments without bypassing the storage limits.B . Bulk API can be used to bypass the storage limits when importing large data volumes...
Which should the developer use to Implement the business requirement in order to minimize maintenance overhead?
A developer created these three Rollup Summary fields in the custom object, Project_ct, The developer is asked to create a new field that shows the ratio between rejected and approved timesheets for a given project. Which should the developer use to Implement the business requirement in order to minimize maintenance...
Which two things should the developer do to make the component available?
A developer created a Lightning web component called statusComponent to be inserted into the Account record page. Which two things should the developer do to make the component available?A . Add <isExposed> true</isExposed> to the statusComponent.js-meta ml file.B . Add <target> lighting _RecordPage </target> to the statusComponent.js-meta ml file.C ....
How can a developer check the test coverage of active Process Builder and Flows deploying them in a Changing Set?
How can a developer check the test coverage of active Process Builder and Flows deploying them in a Changing Set?A . Use the Flow properties page.B . Use the code Coverage Setup pageC . Use the Apex testresult classD . Use SOQL and the Tooling APIView AnswerAnswer: D
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...
Since Aura application events follow the traditional publish-subscribe model, which method is used to fire an event?
Since Aura application events follow the traditional publish-subscribe model, which method is used to fire an event?A . ernit()B . fireEvent()C . fire()D . registerEvent()View AnswerAnswer: C
Which method allows access to the price book?
A developer wants to get access to the standard price book in the org while writing a test class that covers an OpportunityLineItem trigger. Which method allows access to the price book?A . Use Test.loadData ( )and a static resource to load a standard price bookB . Use @TestVisible to...
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...
What should a developer do to allow their code to move some existing Orderltem records to a new Order record?
A developer created a custom order management app that uses an Apex class. The order is represented by an Order object and an Orderltem object that has a master-detail relationship to Order. During order processing, an order may be split into multiple orders. What should a developer do to allow...
What is the most efficient way to ensure a value is selected every time a record is saved?
A custom picklist field, Food_Preference__c, exist on a custom object. The picklist contains the following options: 'Vegan','Kosher','No Preference'. The developer must ensure a value is populated every time a record is created or updated. What is the most efficient way to ensure a value is selected every time a record...