Skip to main content

Posts

Showing posts with the label SFDC PD1 Maintenance

Platform Developer I Certification Maintenance (Winter '21)

1. How can a suspended event be resumed where it left off, to avoid missing any events that were published during the suspension? A. Refresh the event. B. Resume the event. C. Resume the event from New. D. Resume the event from Tip. 2. Which statement is true regarding events configured with the Publish Immediately behavior? A. Publish Immediately events count toward the Apex DML statement limit. B. EventBus.publish() returns how many platform events are configured to Publish Immediately. C. The events are published and do not depend on the successful completion of the transaction. D. Events published immediately prevent Apex callouts from being performed after publishing. 3. What is the minimum code coverage requirement in order to promote and release an unlocked package? A. 70% B. 75% C. 85% D. 90% 4. When using WITH SECURITY_ENFORCED in a SELECT clause, what happens if a field referenced in the clause is inaccessible to the user? A. The query succeeds, but no data is returned. B. Th

Platform Developer I Certification Maintenance (Summer '19)

1.What allows Flows to manipulate complex data types that are often returned from calls to web services? Answer: Apex Defined Data type 2. What is the benefit of using the Continuation class in Apex to make a long-running request to an external web service? ANS: more long-running callouts can be using as Continution 3. Which Lightning web component configuration file tag set specifies the form factors that the component supports? Ans: supportedFormFactors 4. Which tag adds the Lightning Web Components for Visualforce JavaScript library to a Visualforce page? Ans: <apex:includeLightning/> Exercise : Click this link: install Package Update the BatchLeadConvert class to implement the Database.RaisesPlatformEvents marker interface. See below Example : public with sharing class BatchLeadConvert implements Database.Batchable<SObject>, Database.RaisesPlatformEvents { // class implementation } Write a trigger on BatchApexErrorEvent object;

Translate