What is the requirement for a class to be used as a custom Visualforce controller?

What is the requirement for a class to be used as a custom Visualforce controller?A . Any top-level Apex class that has a constructor that returns a PageReferenceB . Any top-level Apex class that extends a PageReferenceC . Any top-level Apex class that has a default, no-argument constructorD . Any...

September 30, 2019 1 Comment READ MORE +

What is a capability of the <ltng:require> tag that is used for loading external Javascript libraries in Lightning Component? (Choose three.)

What is a capability of the <ltng:require> tag that is used for loading external Javascript libraries in Lightning Component? (Choose three.)A . Loading files from Documents.B . One-time loading for duplicate scripts.C . Specifying loading order.D . Loading scripts in parallel.E . Loading externally hosted scripts.View AnswerAnswer: B,C,D

September 29, 2019 No Comments READ MORE +

What should a developer do to meet this requirement?

When viewing a Quote, the sales representative wants to easily see how many discounted items are included in the Quote Line Items. What should a developer do to meet this requirement?A . Create a trigger on the Quote object that queries the Quantity field on discounted Quote Line Items.B ....

September 29, 2019 No Comments READ MORE +

Where would a developer build a managed package?

Where would a developer build a managed package?A . Developer SandboxB . Unlimited EditionC . Partial Copy SandboxD . Developer EditionView AnswerAnswer: D

September 29, 2019 No Comments READ MORE +

The Visualforce page should include which <apex:page> attribute(s) to correctly implement controller functionality?

A Visualforce page is required for displaying and editing Case records that includes both standard and custom functionality defined in an Apex class called myControllerExtension. The Visualforce page should include which <apex:page> attribute(s) to correctly implement controller functionality?A . controller=“Case” and extensions=“myControllerExtension”B . extensions=“myControllerExtension”C . controller=“myControllerExtension”D . standardController=“Case” and extensions=“myControllerExtension”View...

September 29, 2019 No Comments READ MORE +

Which two number expressions evaluate correctly? (Choose two.)

Which two number expressions evaluate correctly? (Choose two.)A . Double d = 3.14159;B . Integer I = 3.14159;C . Decimal d = 3.14159;D . Long l = 3.14159;View AnswerAnswer: A,C

September 29, 2019 No Comments READ MORE +

What should the developer consider when working with triggers?

A newly hired developer discovers that there are multiple triggers on the case object. What should the developer consider when working with triggers?A . Developers must dictate the order of trigger execution.B . Trigger execution order is based on creation date and time.C . Unit tests must specify the trigger...

September 29, 2019 No Comments READ MORE +

Which two strategies should a developer use to accomplish this?

Universal Containers wants Opportunities to be locked from editing when reaching the Closed/Won stage. Which two strategies should a developer use to accomplish this? (Choose two.)A . Use a Visual Workflow.B . Use a validation rule.C . Use the Process Automation Settings.D . Use a Trigger.View AnswerAnswer: B,D

September 29, 2019 No Comments READ MORE +

A developer wrote a workflow email alert on case creation so that an email is sent to the case owner manager when a case is created. When will the email be sent?

A developer wrote a workflow email alert on case creation so that an email is sent to the case owner manager when a case is created. When will the email be sent?A . After Committing to database.B . Before Trigger execution.C . After Trigger execution.D . Before Committing to database.View...

September 28, 2019 No Comments READ MORE +

Which SOQL query successfully returns the Accounts grouped by name?

Which SOQL query successfully returns the Accounts grouped by name?A . SELECT Type, Max(CreatedDate) FROM Account GROUP BY NameB . SELECT Name, Max(CreatedDate) FROM Account GROUP BY NameC . SELECT Id, Type, Max(CreatedDate) FROM Account GROUP BY NameD . SELECT Type, Name, Max(CreatedDate) FROM Account GROUP BY Name LIMIT 5View...

September 28, 2019 No Comments READ MORE +