What are two ways a developer can get the status of an enquered job for a class that queueable interface? Choose 2 answers
What are two ways a developer can get the status of an enquered job for a class that queueable interface? Choose 2 answersA . View the apex status PageB . View the apex flex QueueC . View the apex Jobs pageD . Query the AsyncApexJobe objectView AnswerAnswer: B, D
What are three considerations when using the @InvocableMethod annotation in Apex? Choose 3 answers
What are three considerations when using the @InvocableMethod annotation in Apex? Choose 3 answersA . A method using the @InvocableMethod annotation must define a return value.B . A method using the @InvocableMethod annotation can have multiple input parameters.C . A method using the @InvocableMethod annotation must be declared as staticD...
How should this be accomplished?
A developer is creating an app that contains multiple Lightning web components. One of the child components is used for navigation purposes. When a user click a button called.. component, the parent component must be alerted so it can navigate to the next page. How should this be accomplished?A ....
What should the developer do to fulfill the business request in the quickest and most effective manner?
Universal Containers has large number of custom applications that were built using a third-party javaScript framework and exposed using Visualforce pages. The Company wants to update these applications to apply styling that resembles the look and feel of Lightning Experience. What should the developer do to fulfill the business request...
What should the developer use to ensure the data being Integrated is matched to the right records in Salesforce?
A developer Is Integrating with a legacy on-premise SQL database. What should the developer use to ensure the data being Integrated is matched to the right records in Salesforce?A . Lookup fieldB . External ID fieldC . Formula fieldD . External ObjectView AnswerAnswer: B
Which is the correct implementation?
A developer must create a DrawList class that provides capabilities defined in the Sortable and Drawable interfaces. public interface Sortable { void sort(); } public interface Drawable { void draw(); } Which is the correct implementation?A . Public class DrawList implements Sortable, Implements Drawable { public void sort() { /*implementation*/}...
Which automation allows the developer to satisfy this requirement in the most efficient manner?
A developer is asked to prevent anyone other than a user with Sales Manager profile from changing the Opportunity Status to Closed Lost if the lost reason is blank. Which automation allows the developer to satisfy this requirement in the most efficient manner?A . A record trigger flow on the...
Which three Salesforce resources can be accessed from a Lightning web component? Choose 3 answers
Which three Salesforce resources can be accessed from a Lightning web component? Choose 3 answersA . SVG resourcesB . Third-party web componentsC . Content asset filesD . Static resourcesE . All external librariesView AnswerAnswer: A, D, E
What are two factors that the developer must take into account to properly deploy the modification to the production environment?
A develop completed modification to a customized feature that is comprised of two elements: Apex trigger Trigger handler Apex class What are two factors that the developer must take into account to properly deploy the modification to the production environment?A . Apex classes must have at least 75% code coverage...
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)...