Which three statements are useful inside the unit test to effectively test the custom controller?
A developer has a single custom controller class that works with a Visualforce Wizard to support creating and editing multiple subjects. The wizard accepts data from user inputs across multiple Visualforce pages and from a parameter on the initial URL. Which three statements are useful inside the unit test to...
If apex code executes inside the execute() method of an Apex class when implementing the Batchable interface, which statement are true regarding governor limits? Choose 2 answers
If apex code executes inside the execute() method of an Apex class when implementing the Batchable interface, which statement are true regarding governor limits? Choose 2 answersA . The Apex governor limits might be higher due to the asynchronous nature of the transaction.B . The apex governor limits are reset...
What is the value of the count field if an Account is inserted with an initial value of zero, assuming no other automation logic is implemented on the Account?
A developer writes a trigger on the Account object on the before update event that increments a count field. A workflow rule also increments the count field every time that an Account is created or updated. The field update in the workflow rule is configured to not re-evaluate workflow rules....
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 ....
Without writing unnecessary code, which controller should be used for this purpose?
A developer Is asked to create a Visualforce page that lists the contacts owned by the current user. This component will be embedded In a Lightning page. Without writing unnecessary code, which controller should be used for this purpose?A . Standard list controllerB . Standard controllerC . Lightning controllerD ....
Which three resources in an Azure Component can contain JavaScript functions?
Which three resources in an Azure Component can contain JavaScript functions?A . ControllersB . helperC . DesignD . StyleE . RendererView AnswerAnswer: A, B, E
Which tool should the developer use to troubleshoot?
A developer must troubleshoot to pinpoint the causes of performance issues when a custom page loads in their org. Which tool should the developer use to troubleshoot?A . AppExchangeB . Salesforce CLIC . Visual Studio Core IDED . Developer ConsoleView AnswerAnswer: D
What should a developer do to allow their code to move some existing Orderltem records to a new Order record?
A developer created a custom order management app that uses an Apex class. The order is represented by an Order object and an Orderltem object that has a master-detail relationship to Order. During order processing, an order may be split into multiple orders. What should a developer do to allow...
For which three items can a trace flag be configured?
For which three items can a trace flag be configured? Choose 3 answersA . Process BuilderB . VisualforceC . Apex ClassD . Apex TriggerE . UserView AnswerAnswer: C, D, E
Which approach should a developer take to ensure calculateBodyFat() is accessible outside the package namespace?
Cloud Kicks Fitness, an ISV Salesforce partner, is developing a managed package application. One of the application modules allows the user to calculate body fat using the Apex class, BodyFat, and its method, calculateBodyFat(). The product owner wants to ensure this method is accessible by the consumer of the application...