Join the discussion
Question 1/121
Which three operations affect the number of times a trigger can fire?
Choose 3 answers
Choose 3 answers
Correct Answer: A,B,D
Add Comments
- Other Question (121q)
- Q1. Which three operations affect the number of times a trigger can fire? Choose 3 answers...
- Q2. Which Salesforce feature allows a developer to see when a user last logged in to Salesforc...
- Q3. Universal Containers has a support process that allows users to request support from its e...
- Q4. A team of many developers work in their own individual orgs that have the same configurati...
- Q5. A developer creates a new Apex trigger with a helper class, and writes a test class that o...
- Q6. While writing an Apex class that creates Accounts, a developer wants to make sure that all...
- Q7. A Salesforce developer wants to review their code changes immediately and does not want to...
- Q8. An Apex method, getAccounts, that returns a List of Accounts given a search Term, is avail...
- Q9. A developer has a Apex controller for a Visualforce page that takes an ID as a URL paramet...
- Q10. Which scenario is valid for execution by unit tests?...
- Q11. What should a developer use to fix a Lightning web component bug in a sandbox?...
- Q12. A develop created these three roll-up summary fields on the custom object. Project_c: (Exh...
- Q13. A developer needs to have records with specific field values in order to test a new Apex c...
- Q14. A developer is building custom search functionality that uses SOSL to search account and c...
- Q15. A primaryid_c custom field exists on the candidate_c custom object. The filed is used to s...
- Q16. Universal Container is building a recruiting app with an Applicant object that stores info...
- Q17. Which three web technologies can be integrated into a Visualforce page? (Choose three.)...
- Q18. How many accounts will be inserted by the following block ofcode? for(Integer i = 0 ; i &l...
- Q19. A developer created a new trigger that inserts a Task when a new Lead is created. After de...
- Q20. Which two statements are true about using the @testSetup annotation in an Apex test class?...
- Q21. When using SalesforceDX, what does a developer need to enable to create and manage scratch...
- Q22. What are two ways a developer can get the status of an enquered job for a class that queue...
- Q23. A developer needs to create a custom button for the Account object that, when clicked, wil...
- Q24. A developer is creating a page that allows users to create multiple Opportunities. The dev...
- Q25. An org has an existing Visual Flow that creates an Opportunity with an Update records elem...
- Q26. A developer uses a loop to check each Contact in a list. When a Contact with the Title of ...
- Q27. Universal Container(UC) wants to lower its shipping cost while making the shipping process...
- Q28. Given the following code snippet, that is part of a custom controller for a Visualforce pa...
- Q29. A developer migrated functionality from JavaScript Remoting to a Lightning web component a...
- Q30. Which two statements true about Getter and Setter methods as they relate to Visualforce? C...
- Q31. Universal Containers (UC) decided it will not to send emails to support personnel directly...
- Q32. Universal Containers wants to assess the advantages of declarative development versus prog...
- Q33. Management asked for opportunities to be automatically created for accounts with annual re...
- Q34. Given the following block code: try{ List <Accounts> retrievedRecords = [SELECT Id F...
- Q35. What is the result of the following code snippet?...
- Q36. The orderHelper class is a utility class that contains business logic for processing order...
- Q37. Which two settings must be defined in order to update a record of a junction object? Choos...
- Q38. A business has a proprietary Order Management System (OMS) that creates orders from their ...
- Q39. Cloud kicks has a muli-screen flow its call center agents use when handling inbound servic...
- Q40. The values 'High', 'Medium', and 'Low' are Identified as common values for multiple pickli...
- Q41. A developer needs to prevent the creation of Request_c records when certain conditions exi...
- Q42. Application Events follow the traditional publish-subscribe model. Which method is used to...
- Q43. An Opportunity needs to have an amount rolled up from a custom object that is not in a mas...
- Q44. A Lightning component has a wired property, searchResults, that stores a list of Opportuni...
- Q45. Which two sfdx commands can be used to add testing data to a Developer sandbox?...
- Q46. Which two statements are accurate regarding Apex classes and interfaces? Choose 2 answers...
- Q47. A lead developer creates an Apex interface called "Laptop". Consider the following code sn...
- Q48. A team of developers is working on a source-driven project that allows them to work indepe...
- Q49. Considering the following code snippet: (Exhibit) When the code executes a DML exception i...
- Q50. How can a developer check the test coverage of active Process Builder and Flows deploying ...
- Q51. Refer to the following code snippet for an environment that has more than 200 Accounts bel...
- Q52. Given the code below: (Exhibit) What should a developer do to correct the code so that the...
- Q53. n org has an existing flow that creates an Opportunity with an Update Records element. A d...
- Q54. An Approval Process is defined in the Expense_Item__c. A business rule dictates that whene...
- Q55. Universal Containers (UC) uses a custom object called Vendor. The Vendor custom object has...
- Q56. Which three statements are accurate about debug logs? Choose 3 answers...
- Q57. Given the following Apex statement: Account myAccount = [SELECT Id, Name FROM Account]; Wh...
- Q58. A developer needs to create a custom Interface in Apex. Which three considerations must th...
- Q59. Refer to the following code snippet for an environment has more than 200 Accounts belongin...
- Q60. what are the three languages used in the visualforce page?...
- Q61. Which two operations can be performed using a formula field? Choose 2 answers...
- Q62. Consider the following code snippet: (Exhibit) Given the multi-tenant architecture of the ...
- Q63. A custom object Trainer_c has a lookup field to another custom object Gym___c. Which SOQL ...
- Q64. Which two events need to happen when deploying to a production org? Choose 2 answers...
- Q65. What are two best practices when it comes to Lightning Web Component events?...
- Q66. Management asked for opportunities to be automatically created for accounts with annual re...
- Q67. A developer writes a single trigger on the Account object on the after insert and after up...
- Q68. Given the following Anonymous Block: (Exhibit) Which one do you like? What should a develo...
- Q69. What is a benefit of developing applications in a multi-tenant environment?...
- Q70. Which three resources in an Aura Component can contain Javascript functions? Choose 3 answ...
- Q71. An Approval Process is defined In the Expense__item__c object. A business rule dictates th...
- Q72. Which code displays the contents of a Visualforce page as a PDF?...
- Q73. A developer created a child Lightning web component nested inside a parent Lightning web c...
- Q74. What are two ways that a controller and extension can be specified on a Visualforce page? ...
- Q75. A developer needs to allow users to complete a form on an Account record that will create ...
- Q76. Which three data types can a SOQL query return? Choose 3 answers...
- Q77. A developer creates a custom exception as shown below: What are two ways the developer can...
- Q78. A developer needs an Apex method that can process Account or Contact records. Which method...
- Q79. Which two are phases in the Salesforce Application Event propagation framework? Choose 2 a...
- Q80. Universal Containers implemented a private sharing model for the Account object. A custom ...
- Q81. A large corporation stones Orders and Line Items In Salesforce for different lines of busi...
- Q82. A developer created a Visualforce page and custom controller to display the account type f...
- Q83. A developer creates a Lightning web component that imports a method within an Apex class. ...
- Q84. which statement is true regarding execution order when triggers are associated to the same...
- Q85. What can be used to override the Account's standard Edit button for Lightning Experience7...
- Q86. A developer wants to invoke on outbound message when a record meets a specific criteria. W...
- Q87. For which three items can a trace flag be configured? Choose 3 answers...
- Q88. A developer considers the following snippet of code: (Exhibit) Based on this code, what is...
- Q89. An org tracks customer orders on an Order object and the items of an Order on the Line Ite...
- Q90. The following Apex method is part of the ContactService class that is called from a trigge...
- Q91. A developer is creating a test coverage for a class and needs to insert records to validat...
- Q92. A credit card company needs to Implement the functionality for a service agent to process ...
- Q93. What are three ways for 2 developer to execute tests in an org? Choose 3 answers...
- Q94. Assuming that naze is 8 String obtained by an <apex:inpotText> tag on 8 Visualforce ...
- Q95. What are two ways for a developer to execute tests in an org?...
- Q96. What should a developer do to check the code coverage of a class after running all tests?...
- Q97. Cloud Kicks Fitness, an ISV Salesforce partner, is developing a managed package applicatio...
- Q98. Which two statements are true about Getter and Setter methods as they relate to Visualforc...
- Q99. Given the following trigger implementation: trigger leadTrigger on Lead (before update){ f...
- Q100. Which annotation exposes an Apex class as a RESTful web service?...
- Q101. What can used to delete components from production?...
- Q102. A developer needs to save a List of existing Account records named myAccounts to the datab...
- Q103. A developer needs to create a baseline set of data (Accounts, Contacts, Products, Assets) ...
- Q104. Which code statement includes an Apex method named updateaccounts in the Class AccountCont...
- Q105. Given the following Anonymous Block: (Exhibit) Which one do you like? What should a develo...
- Q106. Which three statements are true regarding trace flags? (Choose three.)...
- Q107. Universal Containers wants Opportunities to no longer be editable when it reaches the Clos...
- Q108. How many accounts will be inserted by the following block ofcode? for(Integer i = 0 ; i &l...
- Q109. A developer is building custom search functionality that uses SOSL to search account and c...
- Q110. An org has an existing Flow that creates an Opportunity with an Update Records element. A ...
- Q111. Which two are best practices when it comes to component and application event handling? (C...
- Q112. Universal Containers has a Visualforce page that displays a table of every Container_c. be...
- Q113. Universal Containers (UC) uses a custom object called Vendor. The Vendor custom object has...
- Q114. Which two characteristics are true for Aura component events? Choose 2 answers...
- Q115. A developer Edition org has five existing accounts. A developer wants to add 10 more accou...
- Q116. What are three considerations when using the @InvocableMethod annotation in Apex? Choose 3...
- Q117. A developer must implement a CheckPaymentProcessor class that provides check processing pa...
- Q118. A developer created a trigger on the Account object and wants to test if the trigger is pr...
- Q119. An Apex method, getAccounts, that returns a list of Accounts given a searchTern, is availa...
- Q120. An org has two custom objects: * Plan_c, that has a master-detail relationship to the Acco...
- Q121. A software company uses the following objects and relationships: * Case: to handle custome...
