Which three options allow a developer to use custom styling in a Visualforce page? (Choose three.)

Which three options allow a developer to use custom styling in a Visualforce page? (Choose three.)A . <apex:stylesheet> tagB . Inline CSSC . <apex:style>tagD . <apex:stylesheets>tagE . A static resourceView AnswerAnswer: A,B,E

October 15, 2019 No Comments READ MORE +

What are two benefits of the Lightning Component framework? (Choose two.)

What are two benefits of the Lightning Component framework? (Choose two.)A . It simplifies complexity when building pages, but not applications.B . It provides an event-driven architecture for better decoupling between components.C . It promotes faster development using out-of-box components that are suitable for desktop and mobile devices.D . It...

October 14, 2019 No Comments READ MORE +

Which code block returns the ListView of an Account object using the following debug statement? system.debug(controller.getListViewOptions() );

Which code block returns the ListView of an Account object using the following debug statement? system.debug(controller.getListViewOptions() );A . ApexPages.StandardSetController controller = new ApexPages.StandardSetController( Database.getQueryLocator( 'SELECT Id FROM Account LIMIT 1'));B . ApexPages.StandardController controller = new ApexPages.StandardController( [SELECT Id FROM Account LIMIT 1]);C . ApexPages.StandardController controller = new ApexPages.StandardController( Database.getQueryLocator( 'SELECT...

October 14, 2019 No Comments READ MORE +

Which three tools can deploy metadata to production? (Choose three.)

Which three tools can deploy metadata to production? (Choose three.)A . Change Set from Developer OrgB . Force.com IDEC . Data LoaderD . Change Set from SandboxE . Metadata APIView AnswerAnswer: A,D,E

October 14, 2019 No Comments READ MORE +

Which two statements are true about using the @testSetup annotation in an Apex test class? (Choose two.)

Which two statements are true about using the @testSetup annotation in an Apex test class? (Choose two.)A . The @testSetup annotation cannot be used when the @isTest(SeeAllData=True) annotation is used.B . Test data is inserted once for all test methods in a class.C . Records created in the @testSetup method...

October 14, 2019 No Comments READ MORE +

What should a developer use to implement an automatic Approval Process submission for Cases?

What should a developer use to implement an automatic Approval Process submission for Cases?A . An Assignment RuleB . Scheduled ApexC . Process BuilderD . A Workflow RuleView AnswerAnswer: C

October 13, 2019 No Comments READ MORE +

Which three options can be accomplished with formula fields? (Choose three.)

Which three options can be accomplished with formula fields? (Choose three.)A . Generate a link using the HYPERLINK function to a specific record.B . Display the previous value for a field using the PRIORVALUE function.C . Determine if a datetime field value has passed using the NOW function.D . Return...

October 13, 2019 No Comments READ MORE +

How can the developer create the page to enforce Field Level Security and keep future maintenance to a minimum?

A developer needs to create a Visualforce page that displays Case data. The page will be used by both support reps and support managers. The Support Rep profile does not allow visibility of the Customer_Satisfaction__c field, but the Support Manager profile does. How can the developer create the page to...

October 13, 2019 No Comments READ MORE +

How should a developer avoid hitting the governor limits in test methods?

How should a developer avoid hitting the governor limits in test methods?A . Use @TestVisible on methods that create records.B . Use Test.loadData() to load data from a static resource.C . Use @IsTest (SeeAllData=true) to use existing data.D . Use Test.startTest() to reset governor limits.View AnswerAnswer: D

October 13, 2019 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...

October 13, 2019 No Comments READ MORE +