Which tool should be used to implement this requirement?

A developer has a requirement to create an Order When an Opportunity reaches a "Closed-Won" status. Which tool should be used to implement this requirement?A . Process BuilderB . Lightning ComponentC . LightningD . Apex triggerView AnswerAnswer: A

May 25, 2021 No Comments READ MORE +

Which aspect of Apex programming is limited due to multitenancy?

Which aspect of Apex programming is limited due to multitenancy?A . The number of active Apex classesB . The number of methods in an Apex ClassC . The number of records processed in a loopD . The number of records returned from database queriesView AnswerAnswer: D

May 24, 2021 No Comments READ MORE +

A developer needs to confirm that a Contact trigger works correctly without changing the organization's data. what should the developer do to test the Contact trigger?

A developer needs to confirm that a Contact trigger works correctly without changing the organization's data. what should the developer do to test the Contact trigger?A . Use the New button on the Salesforce Contacts Tab to create a new Contact record.B . Use the Open execute Anonymous feature on...

May 24, 2021 No Comments READ MORE +

What happens when the developer tries to deploy the trigger and two classes to production, assuming no other code exist?

developer created this Apex trigger that calls MyClass .myStaticMethod: trigger myTrigger on Contact(before insert) ( MyClass.myStaticMethod(trigger.new, trigger.oldMap); } The developer creates a test class with a test method that calls MyClass.mystaticMethod, resulting in 81% overall code coverage. What happens when the developer tries to deploy the trigger and two classes...

May 24, 2021 No Comments READ MORE +

How should a developer write unit tests for a private method in an Apex class?

How should a developer write unit tests for a private method in an Apex class?A . Use the SeeAllData annotation.B . Add a test method in the Apex class.C . Use the TestVisible annotation.D . Mark the Apex class as global.View AnswerAnswer: C

January 20, 2021 No Comments READ MORE +

Which SOQL query will get the record for the Viridian City gym and it's trainers?

A custom object Trainer_c has a lookup field to another custom object Gym___c. Which SOQL query will get the record for the Viridian City gym and it's trainers?A . SELECT Id, (SELECT Id FROM Trainers) FROM Gym_C WHERE Name . Viridian City Gym'B . SELECT Id, (SELECT Id FROM Trainer_c)...

January 19, 2021 2 Comments READ MORE +

What happens when the developer tries to deploy the trigger and two classes to production, assuming no other code exist?

developer created this Apex trigger that calls MyClass .myStaticMethod: trigger myTrigger on Contact (before insert) ( MyClass.myStaticMethod(trigger.new, trigger.oldMap); } The developer creates a test class with a test method that calls MyClass.mystaticMethod, resulting in 81% overall code coverage. What happens when the developer tries to deploy the trigger and two...

January 19, 2021 No Comments READ MORE +

what are the methods used to show input in classic and lightning ?

what are the methods used to show input in classic and lightning ?A . Use visualforce page in classic and lightning component in lightningView AnswerAnswer: A

January 19, 2021 No Comments READ MORE +

Which three steps allow a custom SVG to be included in a Lightning web component? Choose 3 answers

Which three steps allow a custom SVG to be included in a Lightning web component? Choose 3 answersA . Upload the SVG as a static resource.B . Import the static resource and provide a getter for it in JavaScript.C . Reference the getter in the HTML template.D . Reference the...

January 19, 2021 No Comments READ MORE +

Which two operations can be performed using a formula field? Choose 2 answers

Which two operations can be performed using a formula field? Choose 2 answersA . Displaying the last four digits of an encrypted Social Security numberB . Triggering a Process BuilderC . Displaying an Image based on the Opportunity AmountD . Calculating a score on a Lead based on the information...

January 19, 2021 No Comments READ MORE +