Which two statements are accurate regarding Apex classes and interfaces?
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
Which code displays the content of Visualforce page as PDF?
Which code displays the content of Visualforce page as PDF?A . <apex:page renderAs=”pdf”>B . <apex:page readeras’’ application/pdf’’>C . <apex:page readerAs= ‘’application/pdf’’>D . <apex:page contentype ‘’ application/pdf’’)View AnswerAnswer: A
Which approach should a developer use to meet this requirement?
Universal Containers wants to back up all of the data and attachments in its Salesforce org once month. Which approach should a developer use to meet this requirement?A . Use the Data Loader command line.B . Create a Schedulable Apex class.C . Schedule a report.D . Define a Data Export...
Which action may cause triggers to fire?
Which action may cause triggers to fire?A . Updates to Feed ItemsB . Renaming or replacing a picklist entryC . Changing a user's default division when the transfer division option it checkedD . Cascading delete operationsView AnswerAnswer: A
Which is the correct implementation to use the PaymentProcessor interface class?
A developer must implement a CheckPaymentProcessor class that provides check processing payment capabilities that adhere to what defined for payments in the PaymentProcessor interface. public interface PaymentProcessor { void pay(Decimal amount); } Which is the correct implementation to use the PaymentProcessor interface class?A . Public class CheckPaymentProcessor implements PaymentProcessor {...
What are two ways for a developer to execute tests in an org?
What are two ways for a developer to execute tests in an org?A . Tooling APIB . Developer consoleC . Bulk APID . Matadata APIView AnswerAnswer: A,B
Which tool should be used to implement this requirement?
A developer has a requirement to create an Order When an Opportunity reaches a "Closed-Won" status. Which tool should be used to implement this requirement?A . Process BuilderB . Lightning ComponentC . LightningD . Apex triggerView AnswerAnswer: A
Which aspect of Apex programming is limited due to multitenancy?
Which aspect of Apex programming is limited due to multitenancy?A . The number of active Apex classesB . The number of methods in an Apex ClassC . The number of records processed in a loopD . The number of records returned from database queriesView AnswerAnswer: D
A developer needs to confirm that a Contact trigger works correctly without changing the organization's data. what should the developer do to test the Contact trigger?
A developer needs to confirm that a Contact trigger works correctly without changing the organization's data. what should the developer do to test the Contact trigger?A . Use the New button on the Salesforce Contacts Tab to create a new Contact record.B . Use the Open execute Anonymous feature on...
What happens when the developer tries to deploy the trigger and two classes to production, assuming no other code exist?
developer created this Apex trigger that calls MyClass .myStaticMethod: trigger myTrigger on Contact(before insert) ( MyClass.myStaticMethod(trigger.new, trigger.oldMap); } The developer creates a test class with a test method that calls MyClass.mystaticMethod, resulting in 81% overall code coverage. What happens when the developer tries to deploy the trigger and two classes...