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