Which two platform features align to the Controller portion of MVC architecture? (Choose two.)

Which two platform features align to the Controller portion of MVC architecture? (Choose two.)A . Process Builder actionsB . Workflow rulesC . Standard objectsD . Date fieldsView AnswerAnswer: A,B

December 17, 2020 No Comments READ MORE +

Which two exceptions may occur when it executes?

A developer executes the following query in Apex to retrieve a list of contacts for each account: List<account> accounts = [Select ID, Name, (Select ID, Name from Contacts) from Account] ; Which two exceptions may occur when it executes? (Choose two.)A . CPU limit exception due to the complexity of...

December 16, 2020 No Comments READ MORE +

How should a developer create a new custom exception class?

How should a developer create a new custom exception class?A . public class CustomException extends Exception{}B . CustomException ex = new (CustomException)Exception();C . public class CustomException implements Exception{}D . (Exception)CustomException ex = new Exception();View AnswerAnswer: A

December 16, 2020 No Comments READ MORE +

What is a benefit of the lightning component framework?

What is a benefit of the lightning component framework?A . Better integration with Force.com sitesB . Better performance for custom Salesforce1 Mobile AppsC . More Centralized control via server-side logicD . More pre-built components to replicate the salesforce look and feelView AnswerAnswer: D

December 16, 2020 No Comments READ MORE +

What is the end result?

Using the Schema Builder, a developer tries to change the API name of a field that is referenced in an Apex test class. What is the end result?A . The API name is not changed and there are no other impacts.B . The API name of the field and the...

December 16, 2020 No Comments READ MORE +

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...

December 16, 2020 No Comments READ MORE +

Which three declarative fields are correctly mapped to variable types in Apex? (Choose three.)

Which three declarative fields are correctly mapped to variable types in Apex? (Choose three.)A . Number maps to Decimal.B . Number maps to Integer.C . TextArea maps to List of type String.D . Date/Time maps to Dateline.E . Checkbox maps to Boolean.View AnswerAnswer: A,D,E

December 15, 2020 No Comments READ MORE +

Which type of information is provided by the Checkpoints tab in the Developer Console? (Choose 2)

Which type of information is provided by the Checkpoints tab in the Developer Console? (Choose 2)A . NamespaceB . TimeC . ExceptionD . Debug StatementView AnswerAnswer: A,B

December 15, 2020 No Comments READ MORE +

Which statement results in an Apex compiler error?

Which statement results in an Apex compiler error?A . Map<Id,Leas> lmap = new Map<Id,Lead>([Select ID from Lead Limit 8]);B . Date d1 = Date.Today(), d2 = Date.ValueOf(‘2018-01-01’);C . Integer a=5, b=6, c, d = 7;D . List<string> s = List<string>{‘a’,‘b’,‘c’);View AnswerAnswer: D

December 15, 2020 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

December 15, 2020 No Comments READ MORE +