What is the correct order of execution for Visualforce Page "get" requests (initial page visit)?
What is the correct order of execution for Visualforce Page "get" requests (initial page visit)?A . Evaluate constructors on controller and extensions 2) If there's a <apex:form> element, create the view state 3) Evaluate expressions, <apex:page> attribute actions, and other method calls (getters/setters) on main page 4) Evaluate constructors, extensions,...
How would you test a web service?
How would you test a web service?A . Use the @future annotation on the methodB . Call the WebService interfaceC . Web Services do not need to be testedD . Create a class that implements the WebServiceMock interfaceView AnswerAnswer: D
Which component should be added to the Visualforce page to display the message?
messages are rendering on the page. Which component should be added to the Visualforce page to display the message? A) B) C) D) E. Option A F. Option B G. Option C H. Option DView AnswerAnswer: C
What is the transaction limit on the max Salesforce CPU time?
What is the transaction limit on the max Salesforce CPU time?A . 100 secondsB . 60 secondsC . 100 seconds (synchronous); 200 seconds (async)D . 10 seconds (synchronous); 60 seconds (async)E . There is no limitView AnswerAnswer: D
Which tool should the developer use?
A developer wants to retrieve and deploy metadata, perform simple CSV export of query results, and debug Apex REST calls by viewing JSON responses. Which tool should the developer use?A . Developer ConsoleB . Force.com Migration ToolC . WorkbenchD . Force.com IDEView AnswerAnswer: C
What is the transaction limit for SOQL queries?
What is the transaction limit for SOQL queries?A . 20 (synchronous), 200 (async)B . 150 (synchronous), 20 (async)C . 150 (synchronous), 200 (async)D . 100 (synchronous), 200 (async)E . 200 (synchronous), 100 (async)View AnswerAnswer: D
What should be considered in order to do this?
A developer wants to use an Aura Component with a Custom Action. What should be considered in order to do this?A . A default value must be provided for each component attribute marked as required.B . The component must implement the force:lightningQuickActionButton interface.C . The component's JavaScript controller must handle...
Which sObject type requires the test class to have the (seeAllData=true) annotation?
A developer is trying to access org data from within a test class. Which sObject type requires the test class to have the (seeAllData=true) annotation?A . RecordTypeB . ProfileC . UserD . ReportView AnswerAnswer: D
Which option has the correct component changes to display correctly on desktops and tablets?
Refer to the component code above. The information displays as expected (in three rows) on a mobile device. However, the information is not displaying as desired (in a single row) on a desktop or tablet. Which option has the correct component changes to display correctly on desktops and tablets? E....
Why could the test be failing?
A developer wrote a Visualforce page for Sales Reps to add products to an order. The page takes a URL query parameter, productFamily, which filters the product results. The test method for the filter behavior has an assertion failing due to an incorrect number of results. Why could the test...