لا تريد أن تفوت شيئا؟

نصائح اجتياز امتحان الشهادة

آخر أخبار الامتحانات ومعلومات الخصم

برعاية وحديثة من قبل خبرائنا

نعم، أرسل لي النشرة الإخبارية

خذ اختبارات أخرى عبر الإنترنت

السؤال #1
Universal Containers decided to use Salesforce to manage a new hire interview process. A custom object called candidate as created with organization-wide default set to Private. A lookup on the Candidate object sets an employee as an the viewer user:
A. The record can be shared using a permission set
B. The record can be shared using a sharing rule
C. The record cannot be shared with the current setup
D. The record can be shared an Apex class
عرض الإجابة
اجابة صحيحة: D
السؤال #2
How should a developer reference a third-party JavaScript library from a Lightning component?
A. From an asset file
B. From a document
C. From a static resource
D. From a third-party URL
عرض الإجابة
اجابة صحيحة: C
السؤال #3
The test method above tests an Apex trigger that the developer knows will make a lot of queries when a lot of Account are simultaneously updated to be customer. The test method fails at the Line 20 because of too many SOQL queries What is the correct way to fix this?
A. Add TesLstartTest() before and Test
B. Change the DataFactory class to create fewer Accounts so that the number of queries in the trigger is reduced
C. Add TeststartTest() before Line 18 of the code and add Test
D. Replace most of the Apex Trigger with Process Builder processes to reduce the number of queries in the trigger
عرض الإجابة
اجابة صحيحة: C
السؤال #4
Just prior to a new deployment, the Salesforce Administrator who configured a new order fulfillment process in a developer sandbox suddenly left the company. The users had fully tested all of the changes in the sandbox and signed off on them. Unfortunately, although a Change Set was started, it was not complete. A developer is brought in to help finish the deployment.What should the developer do to identify the configuration changes that need to be moved into production?
A. Leverage the Setup Audit Trail to review the changes made by the departed Administrator and identify which changes should be added to the Change Set
B. Use the Metadata API and a supported development IDE to push all of the configuration from the sandbox into production to ensure no changes are lost
C. Set up Continuous Integration and a Git repository to automatically merge all changes from the sandbox metadata with the production metadata
D. In Salesforce setup, look at the last modified date for every object to determine which should be
عرض الإجابة
اجابة صحيحة: A
السؤال #5
Universal Containers (UC) has enabled the translation workbench and has translated picklist values. UC has a custom multi-select picklist field, Products__z, on the Account object that allows sales reps to specify which of UC's products an Account already has. A developer is tasked with writing an Apex method that retrieves Account records, Including product_c field.What should the developer do to ensure the value of Products__c is in the current user's language?
A. Set the locale on each record in the SOQL result list
B. Use the locale clause in the SOQL query
C. Use toLabel1 Products_c in the fields list of the SOQL query
D. Call the translate ( ) method on each record in the SOQL result list
عرض الإجابة
اجابة صحيحة: C
السؤال #6
An org records customer order information In a custom object, Orcer__c, that has fields for the shipping address. A developer is tasked with adding code to calculate shipping charges on an order, based on a fiat percentage rate associated with the region of the shipping address.What should the developer use to store the rates by region, so that when the changes are deployed to production no additional steps are needed for the calculation to work?
A. Custom object
B. Custom metadata type
C. Custom list setting
D. Custom hierarchy setting
عرض الإجابة
اجابة صحيحة: B
السؤال #7
A company has an Apex process that makes multiple extensive database operations and web service callouts. The database processes and web services can take a long time to run and must be run sequentially.How should the developer write this Apex code without running into governor limits and system limitations?
A. Use Limits class to stop entire process once governor limits are reached
B. Use multiple @future methods for each process and callout
C. Use Queueable Apex to chain the jobs to run sequentially
D. Use Apex Scheduler to scheduled each process
عرض الإجابة
اجابة صحيحة: C
السؤال #8
A developer has a requirement to query three fields (Id, Name, Type) from an Account and First and Last names for all Contacts associated with the Account.Which option is the preferred optimized method to achieve this for the Account named `Ozone Electronics'?
A. Account a = [SELECT ID, Name, Type FROM Account WHERE name=`Ozone Electronics']; list lContacts = [SELECT firstname, lastname FROM Contact WHERE accounted=:a
B. Account a = [SELECT ID, Name, Type, (SELECT FirstName, LastName FROM Contacts) FROM Account WHERE name=`Ozone Electronics' LIMIT 1];
C. list lContacts = new list(); for (Contact c :[SELECT firstname, lastname, Account
D. list lAccounts = [SELECT ID, Name, Type FROM Account JOIN (SELECT ID, firstname, lastname FROM Contact WHERE contact
عرض الإجابة
اجابة صحيحة: A
السؤال #9
Which annotation exposes an Apex class as a RESTful neb service?
A. @RemoteAction
B. @RestResource
C. @AuraEnaWed
D. @HttpInvocabte
عرض الإجابة
اجابة صحيحة: B
السؤال #10
A developer writes a lightning web component that displays a dropdown list of all custom objects in the org from which a user will select Apex method prepares and returns data to the component. What should the developer do to determine which objects to include in the response?
A. Check the isCustom ( ) value on the sObject describe result
B. Use the getCustomObject ( ) method from the Schema class
C. Import the list of all custom objects from @salesforce/schema
D. Check the getObjectType () value for Custom' or 'Standard' on the sObject describe result
عرض الإجابة
اجابة صحيحة: A
السؤال #11
Consider the following code snippet:As part of the deployment cycle, a developer creates the following test class:When the test class runs, the assertion fails.Which charge should the developer implement in the Apex test method to ensure the test method execute successfully?
A. Query the Standard User into memory and enclose lines 14 and 15 within the System
B. Add System
C. Query the Administrator user into memory and enclose lines 14 and 15 within the System,runAs (user) method
D. Add @IsTest(seeAllData=True) to line 12 and enclose lines 14 and 15 within Test
عرض الإجابة
اجابة صحيحة: B
السؤال #12
A company accepts orders for customers in their enterprise resource planning (ERP) crder__c records with a lookup field to Account. The Account object has an External ID field, ERP_Customer_ID__c. What should the integration use to create new Order__c records that will automatically be related to the correct Account?
A. Upsert on the Account and specify the ERP_Customer_ID__c
B. Merge on the Order__c object and specify the ERP_Customer_ID__c
C. Insert on the Order__c object followed by an update on the Order__c object
D. Upsert on the Order__c object and specify the ERP_Customer_ID__c
عرض الإجابة
اجابة صحيحة: C
السؤال #13
A developer created a JavaScript library that simplifies the development of repetitive tasks and features and uploaded the library as a static resource called jsUtils in Salesforce. Another developer is coding a new Lightning web component (LWC) and wants to leverage the library.Which statement properly loads the static resource within the LWC?
A.
B. import {jsUtilities} from `@salesforce/resourceUrl/jsUtils';
C. import jsUtilities from `@salesforce/resourceUrl/jsUtils';
D. const jsUtility = $A
عرض الإجابة
اجابة صحيحة: C
السؤال #14
Which tag should a developer use to display different text while anis executing versus not executing?
A.
B.
C.
D.
عرض الإجابة
اجابة صحيحة: A
السؤال #15
A company has a custom object. Request__c. that has a field, Completed__c. and a Lookup to Opportunity, Opportunity__c. Which SOQL query will get a unique list of all of the Opportunity records that have a Completed Request?
A. Option A
B. Option B
C. Option C
D. Option D
عرض الإجابة
اجابة صحيحة: C
السؤال #16
A developer created the code to perform an HTP GET request to an external system.When the code is executed, the callout is unsuccessful and the following error appears within the Developer Console:System.CalloutException: Unauthorized endpoint Which recommended approach should the developer implement to the callout exception?
A. create a remote site setting configuration that includes the endpoint
B. Annotate the getERPCatalogContents method With @Future (Callout-true)
C. use the setHeader () method to specify Basic Authentication
D. Change the access modifier for ERPCatelog from Public to global
عرض الإجابة
اجابة صحيحة: D
السؤال #17
The Account edit button must be overridden in an org where a subset of users still use Salesforce Classic. The org already has a Lightning Component that will do the work necessary for the override, and the client wants to be able to reuse it. How should a developer implement this?
A. Override the edit button for both Lightning and Classic with a Lightning Component
B. Override the edit button for both Lightning and Classic with a new Visualforce page
C. Override the edit button for Lightning with a Lightning Page, and Classic with a Visualforce page that contains the Lightning Component
D. Override the edit button for Lightning with a Lightning Component, and Classic with a Visualforce page that contains the Lightning Component
عرض الإجابة
اجابة صحيحة: C
السؤال #18
A custom Aura component, AddressValidation,cmp,exists in the system. The Salesforce admin for the organization is unable to find and select the component while creating a quick action for the Account sObject. What should the developer do to ensure that AddressValidation,cmp can be selected when creating a quick action?
A. Ensure the component implements the lightning:actionOverride interface
B. Ensure the component implements the force:lighningQuickAction
C. Ensure the access attribute of the aura:component tag is st t Global
D. Ensure the component implements the force:hasRecordedId interface
عرض الإجابة
اجابة صحيحة: B
السؤال #19
What is a benefit of JavaScript remoting over Visualforce Remote Objects?
A. Supports complex server-side application logiccorrect
B. Does not require any JavaScript code
C. Does not require any Apex code
D. Allows for specified re-render targets
عرض الإجابة
اجابة صحيحة: A
السؤال #20
A software company uses a custom object Defect_c, to track defects in their software, Defect__c has organisation-wide defaults set to private Each Dafect__c has a related list of Reviewer_c records, each with a lookup field to User that is used to indicate that the User will review the Defect_c.What should be used to give the User on the Reviewer_c record read only access to the Defect_c record on the Reviewer_c record?
A. View All on Defect_c
B. Apex managed sharing
C. lightning web component
D. Criteria based sharing
عرض الإجابة
اجابة صحيحة: A
السؤال #21
The Contact object in an org is configured with workflow rules that trigger field updates. The fields are not updating, even though the end user expects them to. The developer creates a debug log to troubleshoot the problem. What should the developer specify in the debug log to see the values of the workflow rule conditions and debug the problem?
A. INFO level for the Database log categorycorrect
B. ERROR level for the Workflow log category
C. ERROR level for the Database log category
D. INFO level for the Workflow log category
عرض الإجابة
اجابة صحيحة: A
السؤال #22
A lead developer is creating tests for a Lightning web component. The component re-renders when a property called bypassSelection changes its value.What should the developer use to test that the component re-renders successfully when the property changes?
A. Window
B. Window
C. dispatchEvent (new CustomEvent(`bypassSelection'))
D. Promise
عرض الإجابة
اجابة صحيحة: A
السؤال #23
Refer to the code snippet below:A custom object called Credit_Memo_c exist in a Salesforce environment. As part of a new feature development that retrieves and manipulates this type of record, the developer needs to ensure race conditions are prevented when a set of records are modified within an Apex transaction.In the preceding Apex code, how can the developer alter the query statement to use SOQL features to prevent race condition within a transaction?
A. [Select Id, Name, Amount__c FROM Credit_Memo__c WHERE Customer_Id__c = :customerId FOR REFERENCE LIMIT 50]
B. [Select Id, Name, Amount__c FROM Credit_Memo__c WHERE Customer_Id__c = :customerId limit 50 FOR REFERENCE]
C. [Select Id, Name, Amount__c FROM Credit_Memo__c WHERE Customer_Id__c = :customerId LIMIT 50 FOR UPDATE]
D. [Select Id, Name, Amount__c FROM Credit_Memo__c WHERE Customer_Id__c = :customerId FOR UPDATE LIMIT=50]
عرض الإجابة
اجابة صحيحة: C
السؤال #24
Universal Container needs to integrate with an external system. Every time an Account record is updated to meet certain criteria, a SOAP message must be sent to a third party end-point with the following information: Name, Industry, AccountNumber, and Rating. The lead developer for the org is considering using Workflow rules instead of Apex triggers to fulfill the above requirements.What are three benefits of using Workflow rules as opposed to Apex triggers? (Choose three.)
A. A SOAP message can send more than 100 notifications
B. Two-way SSL is supported by including a client certificate
C. Outbound messages prevent circular changes out-of-the-box
D. Retry logic for outbound messages is enabled out-of-the-box
E. Tracking outbound message delivery is enabled out-of-the-box
عرض الإجابة
اجابة صحيحة: ABC
السؤال #25
When the sales team views an individual customer record, they need to see recent interactions for the customer. These interactions can be sales, orders, phone calls, or Cases. The date range for recent interactions will be different for every customer record type.How can this be accomplished?
A. Use a Lightning component to query and display interactions based on record type that is passed in using a design: attribute from the Lightning page
B. Use Batch Apex to query for the most recent interactions when the customer view screen is loaded
C. Use a Process Builder to query the most recent interactions and then display them on the customer view
D. Use Lightning Flow to read the customer's record type, and then do a dynamic query for recent interactions and display on the View page
عرض الإجابة
اجابة صحيحة: A
السؤال #26
A company has the Lightning Component above that allows users to click a button to save their changes and redirects them to a different page. Currently, when the user hits the Save button the records are getting saved, but they are not redirected.Which three techniques can a developer use to debug the JavaScript? (Choose three.)
A. Use Developer Console to view checkpoints
B. Use Developer Console to view the debug log
C. Use consde
D. Enable Debug Mode for Lightning components for the user
E. Use the browser's dev tools to debug the JavaScript
عرض الإجابة
اجابة صحيحة: CDE
السؤال #27
Which technique can run logic when an Aura Component is loaded?
A. Use an aura:handler `init'' event to call a function
B. Use the connectedCallback(0 method
C. Use the standard doinit function in the controller
D. Call $A
عرض الإجابة
اجابة صحيحة: A
السؤال #28
Given the following containment hierarchy:What is the correct way to communicate the new value of a property named ''passthrough'' to my-parent component if the property is defined within my-child-component?
A. Option A
B. Option B
C. Option C
D. Option D
عرض الإجابة
اجابة صحيحة: B
السؤال #29
A developer is asked to replace the standard Case creation screen with a custom screen that takes users through a wizard before creating the Case. The org only has users running Lightning Experience.What should the developer override the Case New Action with to satisfy the requirements?
A. Lightning Record Page
B. Lightning Component
C. Lightning Flow D
عرض الإجابة
اجابة صحيحة: B
السؤال #30
A developer wrote an Apex method to update a list of Contacts and wants to make it available for use by Lightning web components. Which annotation should the developer add to the Apex method to achieve this?
A. @AuraEnabled
B. @RemoteAction
C. @RemoteAction(cacheable=true)
D. @AuraEnable
عرض الإجابة
اجابة صحيحة: D

View The Updated Salesforce Exam Questions

SPOTO Provides 100% Real Salesforce Exam Questions for You to Pass Your Salesforce Exam!

عرض الإجابات بعد التقديم

يرجى إرسال البريد الإلكتروني الخاص بك والواتس اب للحصول على إجابات الأسئلة.

ملحوظة: يرجى التأكد من صلاحية معرف البريد الإلكتروني وWhatsApp حتى تتمكن من الحصول على نتائج الاختبار الصحيحة.

بريد إلكتروني:
رقم الواتس اب/الهاتف: