Which three Salesforce resources can be accessed from a Lightning web component? Choose 3 answers
Which three Salesforce resources can be accessed from a Lightning web component? Choose 3 answersA . SVG resourcesB . Third-party web componentsC . Content asset filesD . Static resourcesE . All external librariesView AnswerAnswer: A, D, E
which statement is true regarding execution order when triggers are associated to the same object and event?
which statement is true regarding execution order when triggers are associated to the same object and event?A . Trigger execution order cannot be guaranteed.B . executed In the order they are modified.C . Triggers are executed alphabetically by trigger name.D . Triggers are executed in the order they are created.View...
What should a developer change about the Visualforce page to help with the page load errors?
Universal Containers has a Visualforce page that displays a table of every Container_c. being ……. Is falling with a view state limit because some of the customers rent over 10,000 containers. What should a developer change about the Visualforce page to help with the page load errors?A . Use Lazy...
How can the developer find the current user's default record type?
A developer is creating a page that allows users to create multiple Opportunities. The developer is asked to verify the current user's default } | Opportunity record type, and set certain default values based on the record type before inserting the record. How can the developer find the current user's...
Which two are best practices when it comes to component and application event handling? (Choose two.)
Which two are best practices when it comes to component and application event handling? (Choose two.)A . Reuse the event logic in a component bundle, by putting the logic in the helper.B . Use component events to communicate actions that should be handled at the application level.C . Handle low-level...
How should the code be altered to help debug the issue?
A developer is debugging the following code to determinate why Accounts are not being created Account a = new Account(Name = 'A'); Database.insert(a, false); How should the code be altered to help debug the issue?A . Add a System.debug() statement before the insert methodB . Add a try/catch around the...
What are three capabilities of the <ltng: require> tag when loading JavaScript resources in Aura components? Choose 3 answers
What are three capabilities of the <ltng: require> tag when loading JavaScript resources in Aura components? Choose 3 answersA . Loading files from DocumentsB . One-time loading for duplicate scriptsC . Specifying loading orderD . Loading scripts In parallelE . Loading externally hosted scriptsView AnswerAnswer: B,C, D
Which code segment shows the correct declaration of the class and methods?
A developer needs to implement a custom SOAP Web Service that is used by an external Web Application. The developer chooses to Include helper methods that are not used by the Web Application In the Implementation of the Web Service Class. Which code segment shows the correct declaration of the...
What should be done to share a specific Case-Defect_c record with a user?
A software company uses the following objects and relationships: • Case: to handle customer support issues • Defect_c: a custom object to represent known issues with the company's software • case_Defect__c: a junction object between Case and Defector to represent that a defect Is a customer issue What should be...
Which two events need to happen when deploying to a production org? Choose 2 answers
Which two events need to happen when deploying to a production org? Choose 2 answersA . All triggers must have at least 1% test coverage.B . All Apex code must have at least 75% test coverage.C . All triggers must have at least 75% test coverage.D . All test and...