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

March 17, 2022 2 Comments READ MORE +

Which two statements are true about using the @testSetup annotation in an Apex test class? Choose 2 answers

Which two statements are true about using the @testSetup annotation in an Apex test class? Choose 2 answersA . Records created in the test setup method cannot be updated in individual test methods.B . Qo The @testSetup annotation is not supported when the GisTest(SeeAllData=True) annotation is used.C . Test data...

March 17, 2022 No Comments READ MORE +

How should a developer implement this feature?

When a user edits the Postal Code on an Account, a custom Account text field named "Timezone" must be update based on the values in a PostalCodeToTimezone__c custom object. How should a developer implement this feature?A . Build an Account Assignment Rule.B . Build an Account custom Trigger.C . Build...

March 16, 2022 No Comments READ MORE +

How can the developer make sure that validation rule violations are displayed?

A developer has a Visualforce page and custom controller to save Account records. The developer wants to display any validation rule violation to the user. How can the developer make sure that validation rule violations are displayed?A . Add cuatom controller attributes to display the message.B . Include <apex:message> on...

March 16, 2022 No Comments READ MORE +

What can used to delete components from production?

What can used to delete components from production?A . A change set deployment with the delete option checkedB . An ant migration tool deployment with destructivechanges xml file and the components to delete in the package .xml fileC . A change set deployment with a destructivechanges XML fileD . An...

March 16, 2022 No Comments READ MORE +

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

March 16, 2022 No Comments READ MORE +

Which three web technologies can be integrated into a Visualforce page? (Choose three.)

Which three web technologies can be integrated into a Visualforce page? (Choose three.)A . JavaScriptB . CSSC . JavaD . PHPE . HTMLView AnswerAnswer: A,B,E

March 16, 2022 No Comments READ MORE +

What should a developer use to satisfy this requirement?

Cloud kicks has a multi-screen flow that its call center agents use when handling inbound service desk calls. At one of the steps in the flow, the agents should be presented with a list of order numbers and dates that are retrieved from an external order management system in real...

March 16, 2022 No Comments READ MORE +

Which three statements are true regarding trace flags? (Choose three.)

Which three statements are true regarding trace flags? (Choose three.)A . Setting trace flags automatically cause debug logs to be generated.B . Logging levels override trace flags.C . Trace flags override logging levels.D . If active trace flags are not set, Apex tests execute with default logging levels.E . Trace...

March 16, 2022 No Comments READ MORE +

What should the developer do to ensure a successful deployment?

Given the following trigger implementation: trigger leadTrigger on Lead (before update){ final ID BUSINESS_RECORDTYPEID = '012500000009Qad'; for(Lead thisLead : Trigger.new){ if(thisLead.Company != null && thisLead.RecordTypeId != BUSINESS_RECORDTYPEID){ thisLead.RecordTypeId = BUSINESS_RECORDTYPEID; } } } The developer receives deployment errors every time a deployment is attempted from Sandbox to Production. What should...

March 15, 2022 No Comments READ MORE +