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
What are two limitations to the data being returned by the Controller?
A developer wants to call an Apex Server-side Controller from a Lightning Aura Component. What are two limitations to the data being returned by the Controller? (Choose two.)A . A custom Apex Class can be returned, but only the values of public instance properties and methods annotated with @AuraEnabled are...
What is the optimal way for a developer to get the total number of Opportunities for the Lightning Component?
Part of a custom Lightning Component displays the total number of Opportunities in the org, which is in the millions. The Lightning Component uses an Apex Controller to get the data it needs. What is the optimal way for a developer to get the total number of Opportunities for the...
What are three benefits of using declarative customizations over code? (Choose three.)
What are three benefits of using declarative customizations over code? (Choose three.)A . Declarative customizations cannot generate run time errors.B . Declarative customizations will automatically update with each Salesforce release.C . Declarative customizations do not require user testing.D . Declarative customizations are not subject to governor limits.E . Declarative customizations...
What is the optimal way to implement this?
A company represents their customers as Accounts that have an External ID field called Customer_Number__c. They have a custom Order (Order__c) object, with a Lookup to Account, to represent Orders that are placed in their external order management system (OMS). When an order is fulfilled in the OMS, a REST...
What would allow Universal Containers to switch vendors without updating the code to handle authentication?
Universal Containers wants to use an external Web Service provided by a third-party vendor to validate that shipping and billing addresses are correct. The current vendor uses basic password authentication, but Universal Containers might switch to a different vendor who uses OAuth. What would allow Universal Containers to switch vendors...
In what order do the following operations execute?
Roll-up summary calculations In what order do the following operations execute?A . 1, 2, 5, 6, 4, 3B . 1, 5, 6, 2, 4, 3C . 1, 2, 4, 5, 6, 3D . 1, 6, 5, 2, 4, 3View AnswerAnswer: A