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

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

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

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

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

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

السؤال #1
Consider the following code snippet: A developer created the following test class to provide the proper code coverage for the snippet above: However, when the test runs, no data is returned and the assertion fails. Which edit should the developer make to ensure the test class runs successfully?
A. Enclose the method call within Test
B. Implement the seeAllData=true attribute in the @isTest annotation
C. Implement the without sharing keyword in the searchfeature Apex class
D. Implement the setFixedSearchResults method in the test class
عرض الإجابة
اجابة صحيحة: D
السؤال #2
As part of a custom development, a developer creates a Lightning Component to show how a particular opportunity progresses over time. The component must display the date stamp when any of the following fields change:Amount Probability, Stage, or Close DateWhat is the most efficient way to Query such information?
A. [Select Amount, CloseDate, StageName, Probability FROM OpportunityHistory WHERE Opportunityld = :oppId];
B. [Select Newvalue, Oldvalue From OpportunityField_History Where Oppportunity = oppid AND Field IN
C. [Select NewValue, Oldvalue FROM Opportunity FieldHistory WHERE Opportunityld = :oppId AND Field IN
D. ('StageName', Probability',Amount /CloseDate')];
E. [Select Amount CloseDate
عرض الإجابة
اجابة صحيحة: C
السؤال #3
Universal Containers needs to integrate with their own, existing, internal custom web application. The web application accepts JSON payloads, resizes product images, and sends the resized images back to Salesforce. What should the developer use to implement this integration?
A. A workflow rule with an outbound message that contains a session ID
B. An Apex trigger that calls an @future method that allows callouts
C. A platform event that makes a callout to the web application
D. A flow that calls an @future method that allows callouts
عرض الإجابة
اجابة صحيحة: C
السؤال #4
Which type of controller is best suited when you want to add custom functionality to a standard controller page, or when you want reusable functionality throughout pages?
A. Standard Controller
B. Standard List/Set Controller
C. Controller Extensions
D. Custom Controller
عرض الإجابة
اجابة صحيحة: C
السؤال #5
A developer recently released functionality to production that performs complex commission calculations in Apex code called from an Opportunity trigger. Users report that the calculations seem incorrect because the values they see for commissions are wrong.The developer has representative test data in their developer sandbox.Which three tools or techniques should the developer use to execute the code and pause it at key lines to visually inspect values of various Apex variables? Choose 3 answers
A. Developer Console
B. Visual Studio Code
C. Breakpoints
D. Apex Replay Debugger
E. Workbench
عرض الإجابة
اجابة صحيحة: ABD
السؤال #6
A company has reference data stored in multiple Custom Metadata records that represent default information for certain.When a Contact is inserted, the default information should be set on the Contact from the Custom Metadata records .. Address information.What is the optimal way to automate this?
A. Process Builder
B. Apex Trigger
C. Workflow Rule
D. Visual Flow
عرض الإجابة
اجابة صحيحة: A
السؤال #7
A developer is writing code that requires making callouts to an external web service. Which scenario necessitates that the callout be made in an @future method?
A. The callouts will be made in an Apex Test class
B. The callouts will be made in an Apex Trigger
C. The callout could take longer than 60 seconds to complete
D. over 10 callouts will be made in a single transaction
عرض الإجابة
اجابة صحيحة: B
السؤال #8
The Salesforce instance at Universal Containers currently integrates with a third-party company to validate mailing addresses via REST services. The third-party address verification system recently changed endpoint URLs for all their set vices from https://th-addreaa-service.3pc.com to https://plc1-mailsarvice.3pc.com. Everything else remained the same. The developer updated code to reflect this endpoint change, but the mailing address validation service stopped workingAfter the change.What else should be d
A. Test the callout property using HttpCalloutMock
B. Add web service IP Addresses to Trusted IP Ranges m the Network Access security controls settings
C. Use a Custom Setting with the new endpoint Instead of hard coding the URL
D. Create a new Remote Site for the new endpoint URL
عرض الإجابة
اجابة صحيحة: D
السؤال #9
Consider the following code snippet, depicting an Aura component:Which two interfaces can the developer implement to make the component available as a quick action? (Choose two.)
A. Force:lightningQuicAction
B. Force:hasRecordId
C. Force hasObjectName
D. Lightning QuickActionAPI
E. Force:lightningQuickActionWithoutHeader
عرض الإجابة
اجابة صحيحة: AE
السؤال #10
Exhibit:What can be done to improve the performance of the insert trigger shown above?
A. Option A
B. Option B
C. Option C
D. Option D
عرض الإجابة
اجابة صحيحة: D
السؤال #11
Refer to the code below:A developer is building this Aura component to display information about top Opportunities in the org.Which three code changes must be made for the component to work?Choose 3 answers
A. Add the static keyword to the Apex method
B. Set the controller in the component markup
C. Add the RemoteAction annotation to the Apex method
D. Add the AuraEnabled annotation to the Apex method
E. Get the controller action with cmp
عرض الإجابة
اجابة صحيحة: ABD
السؤال #12
What should be added to the setup, in the location indicated, for the unit test above to create the controller extension for the test?
A. AccountControllerExt extension = new AccountControllerExt(acct);
B. ApexPages
C. ApexPages
D. AccountControllerExt extension = new AccountControllerExt(acct
عرض الإجابة
اجابة صحيحة: C
السؤال #13
Which type of controller is best suited when you want all of the basic DML functions from an object's normal new/edit page?
A. Standard Controller
B. Standard List/Set Controller
C. Controller Extensions
D. Custom Controller
عرض الإجابة
اجابة صحيحة: A
السؤال #14
A developer is tasked with creating a Lightning web component that allows users to create a Case for a selected product, directly from a custom Lightning page. The input fields in the component are displayed in a non-linear fashion on top ofAn image of the product to help the user better understand the meaning of the fields.Which two components should a developer use to implement the creation of the Case from the Lightning web component?Choose 2 answers
A. lightning-record-edit-form
B. lightning-input
C. lightning-record-form
D. lightning-input-field
عرض الإجابة
اجابة صحيحة: AC
السؤال #15
A developer sees test failures in the sandbox but not in production. No code or metadata changes have been actively made to either environment since the sandbox was created. Which consideration should be checked to resolve the issue?
A. Ensure the Apex Classes are on the same API version
B. Ensure Process Builder processes are inactive
C. Ensure the sandbox is on the same release as production
D. Ensure Workflow Rules are inactive
عرض الإجابة
اجابة صحيحة: C
السؤال #16
Consider the following code snippet:When the component is deployed, an error is reported.Which two changes should the developer implement in the code to ensure the component deploys successfully? Choose 2 answers
A. Option A
B. Option B
C. Option C
D. Option D
عرض الإجابة
اجابة صحيحة: BD
السؤال #17
A developer is experiencing issues with a Lightning web component. The component must surface information about Opportunity owned by the currently logged-in user.When the component is rendered, the following message is displayed: `'Error retrieving data''Which modification should be implemented to the Apex class to overcome the issue?
A. Edit the code to use the without sharing keyword in the Apex class
B. Use the Cacheable=True attribute in the Apex method
C. Ensure the OWD for the Opportunity object is public
D. Use the Continuation=true attribute in the Apex method
عرض الإجابة
اجابة صحيحة: B

View The Updated Salesforce Exam Questions

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

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

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

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

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