Following best practices, what should a developer use to meet this requirement?
A company wants to implement a new call center process for handling customer service calls. It requires service reps to ask for the caller’s account number before proceeding with the rest of their call script. Following best practices, what should a developer use to meet this requirement?A . Apex TriggerB...
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 optimal way to automate this?
A company has a custom object, Sales Demo Request, that has a lookup to an Opportunity. It is required that a Sales Demo Request record be created when an Opportunity’s Probability is greater than 50%. What is the optimal way to automate this?A . Use an Apex Trigger on Opportunity.B...
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?A ....
What is a possible reason to get this error message?
A developer gets an error saying 'Maximum Trigger Depth Exceeded'. What is a possible reason to get this error message?A . The SOQL governor limits are being hit.B . A process Builder is running that sends mass emails.C . There are numerous DML operations in the trigger logic.D . A...
What is the optimal way to accomplish this?
A developer is asked to build a solution that will automatically send an email to the Customer when an Opportunity stage changes. The solution must scale to allow for 10,000 emails per day. The criteria to send the email should be evaluated after all Workflow Rules have fired. What is...
What should be used?
A developer built a Component to be used at the front desk for quests to self-register upon arrival at a kiosk. The developer is now asked to create a Component for the Utility Tray to alert Users whenever a guest has arrived at the front desk. What should be used?A...
Which two relationship queries use the proper syntax? (Choose two.)
Which two relationship queries use the proper syntax? (Choose two.)A . SELECT Id, Name, Account__r.Name FROM Contact WHERE Account__r.Industry ='Media'B . SELECT Name, (SELECT LastName FROM Contacts__r) FROM AccountC . SELECT Name, (SELECT LastName FROM Contacts) FROM AccountD . SELECT Id, Name, Account.Name FROM Contact WHERE Account.Industry = 'Media'View AnswerAnswer:...
What should be done to address the problem?
A company has code to update a Request and Request Lines and make a callout to their external ERP system's REST endpoint with the updated records. The CalloutUtil.makeRestCallout fails with a 'You have uncommitted work pending. Please commit or rollback before calling out' error. What should be done to address...
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 . ReportB . UserC . ProfileD . RecordTypeView AnswerAnswer: A