What should be done to share a specific Case-Defect_c record with a user?
A software company uses the following objects and relationships: • Case: to handle customer support issues • Defect_c: a custom object to represent known issues with the company's software • case_Defect__c: a junction object between Case and Defector to represent that a defect Is a customer issue What should be...
Which type of org is best suited for this scenario?
A team of many developers work in their own individual orgs that have the same configuration at the production org. Which type of org is best suited for this scenario?A . Developer SandboxB . Developer EditionC . Full SandboxD . Partner Developer EditionView AnswerAnswer: A
What are two characteristics related to formulas? Choose 2 answers.
What are two characteristics related to formulas? Choose 2 answers.A . Formula can reference themselves.B . Formulas are calculated at runtime and are not stored in the database.C . Formulas can reference values in related objects.D . Fields that are used in a formula field can be deleted or edited...
Which two statements are accurate regarding Apex classes and interfaces? Choose 2 answers
Which two statements are accurate regarding Apex classes and interfaces? Choose 2 answersA . Classes are final by default.B . Inner classes are public by default.C . Interface methods are public by default.D . A top-level class can only have one inner class level.View AnswerAnswer: C,D
How does the Lightning Component framework help developers implement solutions faster?
How does the Lightning Component framework help developers implement solutions faster?A . By providing an Agile process with default stepsB . By providing code review standards and processesC . By providing device-awareness for mobile and desktopsD . By providing change history and version controlView AnswerAnswer: C
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....
What are two characteristics of declarative development over programmatic customization?
Universal Containers wants to assess the advantages of declarative development versus programmatic customization for specific use cases in its Salesforce implementation. What are two characteristics of declarative development over programmatic customization? Choose 2 answersA . Declarative development has higher design limits and query limits.B . Declarative development can be done...
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*/}...
How should a developer write unit tests for a private method in an Apex class?
How should a developer write unit tests for a private method in an Apex class?A . Use the SeeAllData annotation.B . Add a test method in the Apex class.C . Use the TestVisible annotation.D . Mark the Apex class as global.View AnswerAnswer: C
What should a developer do to check the code coverage of a class after running all tests?
What should a developer do to check the code coverage of a class after running all tests?A . View the Code Coverage column in the list view on the Apex Classes page.B . View the Class Test Percentage tab on the Apex Class fist view m Salesforce Setup.C . View...