What is the recommend way to accomplish this?
A developer created a weather app that contains multiple Lightning web components. One of the components, called Toggle, has a toggle for Fahrenheit or Celsius units. Another component, called Temperature, displays the current temperature in the unit selected in the Toggle component When a user toggles from Fahrenheit to Celsius...
What is the result of the following code?
What is the result of the following code?A . The record will not be created and a exception will be thrown.B . The record will be created and a message will be in the debug log.C . The record will not be created and no error will be reported.D ....
Which method allows access to the price book?
A developer wants to get access to the standard price book in the org while writing a test class that covers an OpportunityLineItem trigger. Which method allows access to the price book?A . Use Test.loadData ( )and a static resource to load a standard price bookB . Use @TestVisible to...
Which three per-transaction limits have higher governor limits in asynchronous Apex transactions?
Which three per-transaction limits have higher governor limits in asynchronous Apex transactions?A . Maximum CPU timeB . Maximum heap sizeC . Total SOQL queriesD . Maximum execution timeE . Records returned by SOQLView AnswerAnswer: A,C,E
Which Lightning code segment should be written to declare dependencies on a Lightning component, c:accountList, that is used in a Visualforce page?
Which Lightning code segment should be written to declare dependencies on a Lightning component, c:accountList, that is used in a Visualforce page? A) B) C) D) A . Option AB . Option BC . Option CD . Option DView AnswerAnswer: A
What are three characteristics of change set deployments? Choose 3 answers
What are three characteristics of change set deployments? Choose 3 answersA . Change sets can only be used between related organizations.B . Change sets can be used to transfer records.C . Sending a change set between two orgs requires a deployment connection.D . Change sets can deploy custom settings data.E...
What should the developer do to successfully deploy the new Apex trigger and helper class?
A developer creates a new Apex trigger with a helper class, and writes a test class that only exercises 95% coverage of new Apex helper class. Change Set deployment to production fails with the test coverage warning: "Test coverage of selected Apex Trigger is 0%, at least 1% test coverage...
Which method should be used to calculate the estimated ship date for an Order?
Universal Containers stores the availability date on each Line Item of an Order and Orders are only shipped when all of the Line Items are available. Which method should be used to calculate the estimated ship date for an Order?A . Use a CEILING formula on each of the Latest...
Which two statements are true about Getter and Setter methods as they relate to Visualforce?
Which two statements are true about Getter and Setter methods as they relate to Visualforce?A . Setter methods always have to be declared global.B . There is no guarantee for the order in which Getter methods are called.C . A corresponding Setter method is required for each Getter method.D ....
What should a developer use to obtain the Id and Name of all the Leads. Accounts, and Contacts that hove the company name "Universal Containers"?
What should a developer use to obtain the Id and Name of all the Leads. Accounts, and Contacts that hove the company name "Universal Containers"?A . FIND 'Universal Containers' IN Name Fields RETURNING leadjid, name), accounted, name), contacted, name)B . FIND Universal Containers' IN CompanyName Fietds RETURNING lead{ld. name), accounted,...