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...
What is the optimal way to update the Accounts from the external system?
A company uses an external system to manage its custom account territory assignments. Every quarter, millions of Accounts may be updated in Salesforce with new Owners when the territory assignments are completed in the external system. What is the optimal way to update the Accounts from the external system?A ....
Which API can b|e used to execute unit tests? (Choose three.)
Which API can b|e used to execute unit tests? (Choose three.)A . Streaming APB . Test APIC . Tooling APID . SOAP APIE . Metadata APIView AnswerAnswer: C,D,E
What are the ways a developer can create test data of Contacts? (Choose two.)
What are the ways a developer can create test data of Contacts? (Choose two.)A . Test.createTestData ()B . myDataFactory.createContacts(10)C . Test.loadData(Contact.sObjectType, 'staticResource')D . Test.loadTestRecords(Contact.sObjectType, 'staticResource')View AnswerAnswer: B,C
How can a developer insert an Employee_c record linked to Company_c with a Company_ld_c of '999'?
Employee_c is a Child object of Company_c. The Company_c object has an external Id field Company_ld_c. How can a developer insert an Employee_c record linked to Company_c with a Company_ld_c of '999'?A . Employee_c emp = new Employee_c(Name=fDeveloperf); emp.Company_r = f999f insert emp;B . Employee_c emp = new Employee_c(Name=fDeveloperf); emp.Company_c...