What should a developer do to check the code coverage of a class after running all tests?

What should a developer do to check the code coverage of a class after running all tests?A . View the Code Coverage column in the list view on the Apex Classes page.B . View the Class Test Percentage tab on the Apex Class fist view m Salesforce Setup.C . View...

October 5, 2024 No Comments READ MORE +

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

October 5, 2024 No Comments READ MORE +

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

October 5, 2024 No Comments READ MORE +

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

October 5, 2024 No Comments READ MORE +

What is the best practice to get the sum of all Order Line item totals on the Order record?

Universal Containers has implemented an order management application. Each Order can have one or more Order Line items. The Order Line object is related to the Order via a master-detail relationship. For each Order Line item, the total price is calculated by multiplying the Order Line item price with the...

October 4, 2024 No Comments READ MORE +

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

October 4, 2024 No Comments READ MORE +

Which method should be used to calculate the estimated ship date for an Order?

Universal Containers stores the availability date on each Line Item of an Order and Orders are only shipped when all of the Line Items are available. Which method should be used to calculate the estimated ship date for an Order?A . Use a CEILING formula on each of the Latest...

October 3, 2024 No Comments READ MORE +

What is the value of the count field if an Account is inserted with an initial value of zero, assuming no other automation logic is implemented on the Account?

A developer writes a trigger on the Account object on the before update event that increments a count field. A workflow rule also increments the count field every time that an Account is created or updated. The field update in the workflow rule is configured to not re-evaluate workflow rules....

October 3, 2024 No Comments READ MORE +

In which two ways can this be accomplished?

A developer created a child Lightning web component nested inside a parent Lightning web component, parent component needs to pass a string value to the child component. In which two ways can this be accomplished? Choose 2 answersA . The parent component can use a custom event to pass the...

October 3, 2024 No Comments READ MORE +

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

October 2, 2024 No Comments READ MORE +