Which three statements are accurate about debug logs? Choose 3 answers
Which three statements are accurate about debug logs? Choose 3 answersA . Amount of information logged in the debug log can be controlled programmatically.B . Debug Log levels are cumulative, where FINE lop level includes all events logged at the DEBUG, INFO, WARN, and ERROR levels.C . Amount of information...
How can the developer resolve the error?
A developer receives an error when trying to call a global server-side method using the ©remoteAction decorator. How can the developer resolve the error?A . Change the function signature to be private static.B . Add static to the server-side method signature.C . A Decorate the server-side method with (static=true).D ....
In this implementation scenario, which artifact is part of the Controller according to the MVC architecture?
A developer creates a Lightning web component that imports a method within an Apex class. When a Validate button is pressed, the method runs to execute complex validations. In this implementation scenario, which artifact is part of the Controller according to the MVC architecture?A . HTML fileB . JavaScript fileC...
A developer must build application that tracks which Accounts have purchase specific pieces of equal products. Each Account could purchase many pieces of equipment.
A developer must build application that tracks which Accounts have purchase specific pieces of equal products. Each Account could purchase many pieces of equipment. How should the developer track that an Account has purchased a piece of equipment.A . Use the Asset object.B . Use a Custom object.C . Use...
Which is the correct definition of the Apex method that gets additional information?
A Visual Flow uses an apex Action to provide additional information about multiple Contacts, stored in a custom class, contactInfo. Which is the correct definition of the Apex method that gets additional information?A . @InvocableMethod(label='Additional Info') public List<ContactInfo> getInfo(List<Id> contactIds) { /*implementation*/ }B . @InvocableMethod(label='additional Info') public static ContactInfo getInfo(Id...
Where are two locations a developer can look to find information about the status of asynchronous or future methods? Choose 2 answers
Where are two locations a developer can look to find information about the status of asynchronous or future methods? Choose 2 answersA . Apex Flex QueueB . Apex JobsC . Paused Flow Interviews componentD . Time-Based Workflow MonitorView AnswerAnswer: A,B
What are three techniques that a developer can use to invoke an anonymous block of code? (Choose three.)
What are three techniques that a developer can use to invoke an anonymous block of code? (Choose three.)A . Use the SOAP API to make a call to execute anonymous code.B . Create a Visualforce page that uses a controller class that is declared without sharing.C . Run code using...
Which SOSL statement should the developer use?
A developer wants to retrieve the Contacts and Users with the email address '[email protected]'. Which SOSL statement should the developer use?A . FIND {[email protected]} IN Email Fields RETURNING Contact (Email), User (Email)B . FIND {Email = '[email protected]'} IN Contact, UserC . FIND {Email = '[email protected]'} RETURNING Contact (Email), User (Email)D...
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...
Which method should a developer use to ensure only users that should be able to delete Accounts can successfully perform deletions?
A developer must write an Apex method that will be called from a Lightning component. The method may delete an Account stored in the accountRec variable. Which method should a developer use to ensure only users that should be able to delete Accounts can successfully perform deletions?A . Schema.sObjectType.Account.isDeletable()B ....