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

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

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

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

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

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

السؤال #1
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(cacheable-true)
B. @AuraEnabled
C. @RemoteAction
D. @RemoteAction(cacheable-ture)
عرض الإجابة
اجابة صحيحة: B
السؤال #2
What are two ways that a controller and extension can be specified on a Visualforce page? Choose 2 answers
A. a@pex:page=Account extends="myControllerExtension"
B. Qo apex:page standardController="Account" extensions="myControllerExtension"
C. apex:page controllers="Account, myControllerExtension"
D. apex:page controller="Account" extensions="myControllerExtension""
عرض الإجابة
اجابة صحيحة: BD
السؤال #3
A developer is implementing an Apex class for a financial system. Within the class, the variables `creditAmount' and `debitAmount' should not be able to change once a value is assigned.In which two ways can the developer declare the variables to ensure their value can only be assigned one time? (Choose two.)
A. Use the static keyword and assign its value in a static initializer
B. Use the final keyword and assign its value when declaring the variable
C. Use the final keyword and assign its value in the class constructor
D. Use the static keyword and assign its value in the class constructor
عرض الإجابة
اجابة صحيحة: BC
السؤال #4
Which two events need to happen when deploying to a production org? (Choose two.)
A. All Process Builder Processes 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 1% test coverage
D. All Visual Flows must have at least 1% test coverage
عرض الإجابة
اجابة صحيحة: BC
السؤال #5
A develop created these three roll-up summary fields on the custom object. Project_c: Total_Timesheets_c Total_Approved_Timesheets_c Total_Rejected_Timesheet_c The developer is asked to create a new field that should the ratio between rejected and approved timesheet for a given project. What are two benefits of choosing a formula held instead of an Apex trigger to fulfill the request? Choose 2 answers
A. A test class will validate the formula field during deployment
B. A formula field will trigger existing automation when deployed
C. A formula field will calculate the retroactively for existing records
D. Using a formula field reduces maintenance overhead
عرض الإجابة
اجابة صحيحة: BC
السؤال #6
What is an accurate constructor for a custom controller named "MyController"?
A. public MyController () { account = new Account () ; }
B. public MyController (sObject obj) { account = (Account) obj; }
C. public MyController (List objects) { accounts = (List ) objects; }
D. public MyController (ApexPages
عرض الإجابة
اجابة صحيحة: A
السؤال #7
A developer needs to allow users to complete a form on an Account record that will create a record for a custom object. The form needs to display different fields depending on the user's job role. The functionality should only be available to a small group of users.Which three things should the developer do to satisfy these requirements?Choose 3 answers
A. Add a dynamic action to the Account record page
B. Create a custom permission for the users
C. Create a Lightning web component
D. Add a dynamic action to the user's assigned page layouts
E. Create a dynamic form
عرض الإجابة
اجابة صحيحة: ABE
السؤال #8
A developer wants to list all of the Tasks for each Account on the Account detail page. When a task is created for a Contact, what does the developer need to do to display the Task on the related Account record?
A. Nothing
B. Nothing
C. Create a Workflow rule to relate the Task to the Contact's Account
D. Create an Account formula field that displays the Task information
عرض الإجابة
اجابة صحيحة: A
السؤال #9
AW Computing (AWC) handles orders In Salesforce and stores Its product Inventory In a fter, inventory_c, on a custom object, Product_c. When en order for a Product_c Is placed, the inventory_c field Is reduced by the quantity of the order using an Apex trigger. AWC wants the real-time inventory reduction for a product to be sent to many of Its external systems, Including some future systems the company Is currently planning. What should a developer add to the code at the placeholder to meet these requiremen
A. Option A
B. Option B
C. Option C
D. Option D
عرض الإجابة
اجابة صحيحة: A
السؤال #10
Universal Containers wants Opportunities to no longer be editable when it reaches the Closed/Won stage.Which two strategies can a developer use to accomplish this? Choose 2 answers
A. Use the Process Automation settings
B. Use an after-save flow
C. Use a trigger
D. Use a validation rule
عرض الإجابة
اجابة صحيحة: CD
السؤال #11
The orderHelper class is a utility class that contains business logic for processing orders. Consider the following code snippet:A developer needs to create a constant named DELIVERY_MULTIFILTER with a value of 4.15. The value of the constant should not change at any time in the code.How should the developer declare the DELIVERY_MULTIFILTER constant to meet the business objectives?
A. Decimal DELIVERY_MULTIFILTER = 4
B. Static final decimal DELIVERY_MULTIFILTER = 4
C. Static decimal DELIVERY_MULTIFILTER = 4
D. Constant decimal DELIVERY_MULTIFILTER = 4
عرض الإجابة
اجابة صحيحة: B
السؤال #12
A developer is building custom search functionality that uses SOSL to search account and contact records that match search terms provided by the end user. The feature is exposed through a Lightning web component, and the end user is able to provide a list of terms to search. Consider the following code snippet:@AuraEnabled public static List> searchTerms (ListtermList) { List> result = new List>(); for (String term : termList) { result.addAll ([[FIND :term IN ALL FIELDS RETURNING Account (Name), Contact (Fi
A. 20
B. 150
C. 200
D. 2,000
عرض الإجابة
اجابة صحيحة: D
السؤال #13
What is true of a partial sandbox that is not true of a full sandbox? Choose 2 answers
A. More frequent refreshes
B. Limited to 5 GB of data
C. Use of change sets
D. Only includes necessary meta data
عرض الإجابة
اجابة صحيحة: AB
السؤال #14
Which statement about change set deployments is accurate?
A. They use an all or none deployment model
B. They require a deployment connection
C. They ca be used to transfer Contact records
D. They can be used to deploy custom settings data
E. They can be used only between related organizations
عرض الإجابة
اجابة صحيحة: ABE
السؤال #15
Refer to the following code snippet for an environment that has more than 200 Accounts belonging to the Technology' industry:for Account thisAccount : [Select Id, Industry FROM Account LIMIT 250]) { if (thisAccount. Industry == Technology') { thisAccount.Is_Tech_c = true; } update thisAccount; }Which three statements are accurate about debug logs? Choose 3 answers
A. Debug log levels are cumulative, where FINE log level includes all events logged at the DEBUG, INFO, WARN, and ERROR levels
B. The maximum size of a debug log is 5 MB
C. Only the 20 most recent debug logs for a user are kept
D. Debug logs can be set for specific users, classes, and triggers
E. System debug logs are retained for 24 hours
عرض الإجابة
اجابة صحيحة: CDE
السؤال #16
A developer tasked with creating a schema to track Movies, Actors, and contracts. A single movie can have many contracts and a single actor can have many contracts. Each contract is owned and actively managed by a single user. Which schema should be created to enable user to easily manage the contract they own; without requiring access to the movie or the actor records?
A. A master detail relationship to the movie object and a lookup relationship to the actor object
B. A lookup relationship to the movie object and a lookup relationship to the actor object
C. A lookup relationship to the movie object and a master detail relationship to the actor object
D. A master detail relationship to the movie object and a master detail relationship to the actor object
عرض الإجابة
اجابة صحيحة: B
السؤال #17
Which three per-transaction limits have higher governor limits in asynchronous Apex transactions?
A. Maximum CPU time
B. Maximum heap size
C. Total SOQL queries
D. Maximum execution time
E. Records returned by SOQL
عرض الإجابة
اجابة صحيحة: ACE
السؤال #18
A business implemented a magnification plan to encourage its customers to watch some educational videos. Customers can watch videos over several days, and their progress is recorded. Award points are granted to customers for all completed videos. When the video is marked as completed in Salesforce, an external web service must be called so that points can be awarded to the user. A developer implemented these requirements in the after update trigger by making a calf to an external web service. However, a Sys
A. Surround the external call with a try-catch block to handle the exception
B. Write a REST service to integrate with the external web service
C. Move the callout to an asynchronous method with structure (callout=true) annotation
D. Replace the after update trigger with a before insert trigger
عرض الإجابة
اجابة صحيحة: C
السؤال #19
A developer working on a time management application wants to make total hours for each timecard available to application users. A timecard entry has a Master-Detail relationship to a timecard. Which approach should the developer use to accomplish this declaratively?
A. A Visualforce page that calculates the total number of hours for a timecard and displays it on the page
B. A Roll-Up Summary field on the Timecard Object that calculates the total hours from timecard entries for that timecard
C. A Process Builder process that updates a field on the timecard when a timecard entry is created
D. An Apex trigger that uses an Aggregate Query to calculate the hours for a given timecard and stores it in a custom field
عرض الإجابة
اجابة صحيحة: B
السؤال #20
A development team wants to use a deployment script lo automatically deploy lo a sandbox during their development cycles. Which two tools can they use to run a script that deploys to a sandbox? Choose 2 answers
A. Ant Migration Tool
B. SFDX CLI
C. Change Sets
D. Developer Console
عرض الإجابة
اجابة صحيحة: AB
السؤال #21
While writing a test class that covers an OpportunityLineItem trigger, a Developer is unable to create a standard PriceBook since one already exists in the org. How should the Developer overcome this problem?
A. Use Test
B. Use @IsTest(SeeAllData=true) and delete the existing standard PriceBook
C. Use Test
D. Use @TestVisible to allow the test method to see the standard PriceBook
عرض الإجابة
اجابة صحيحة: A
السؤال #22
A developer uses a loop to check each Contact in a list. When a Contact with the Title of 'Boss' is found, the Apex method should jump to the first line of code outside of the for loop.Which Apex solution will let the developer implement this requirement?
A. return;
B. continue;
C. break;
D. System
عرض الإجابة
اجابة صحيحة: C
السؤال #23
A Visual Flow uses an Apex Action to provide additional information about multiple Contacts, stored in a custom class, ContactInfo.Which is the correct definition of the Apex method that gets the additional information?
A. @InvocableMethod(label='Additional Info') public ContactInfo getInfo(Id contactId) { /*implementation*/ }
B. @InvocableMethod(label='Additional Info') public ListgetInfo(ListcontactIds) { /*implementation*/ }
C. @InvocableMethod(label='Additional Info') public static ContactInfo getInfo(Id contactId) { /*implementation*/ }
D. @InvocableMethod(label='Additional Info') public static ListgetInfo(ListcontactIds) { /*implementation*/ }
عرض الإجابة
اجابة صحيحة: D
السؤال #24
Which three options allow a developer to use custom styling in a Visualforce page? (Choose three.)
A. ag
B. Inline CSS
C. ag
D. ag
E. A static resource
عرض الإجابة
اجابة صحيحة: ABE
السؤال #25
A company wants to implement a new call center process for handling customer service calls. It requires service reps to ask for the caller's account number before proceeding with the rest of their call script. Following best practices, what is the optimal approach to satisfy this requirmrnt?
A. Flow Builder
B. Approvals
C. Apex trigger
D. Einstein Next Best Action
عرض الإجابة
اجابة صحيحة: A
السؤال #26
A developer needs to display all of the available fields for an object. In which two ways can the developer retrieve the available fields if the variable myObject represents the name of the object? (Choose two.)
A. Use myObject
B. Use mySObject
C. Use Schema
D. Use getGlobalDescribe()
عرض الإجابة
اجابة صحيحة: BC
السؤال #27
How should a developer avoid hitting the governor limits in test methods?
A. Use @TestVisible on methods that create records
B. Use Test
C. Use @IsTest (SeeAllData=true) to use existing data
D. Use Test
عرض الإجابة
اجابة صحيحة: D
السؤال #28
A third-party vendor created an unmanaged Lightning web component. The Salesforce Administrator wishes to expose the component only on Record Page Layouts.Which two actions should the developer take to accomplish this business objective?Choose 2 answers
A. Specify lightningCommunity_Page as a target in the XML file
B. Ensure isExposed is set to true on the XML file
C. Specify lightningCommunity_Page_Layout as a target in the XML file
D. Specify lightning_RecordPage as a target in the XML file
عرض الإجابة
اجابة صحيحة: BD
السؤال #29
When can a developer use a custom Visualforce page in a Force.com application? (Choose 2)
A. To generate a PDF document with application data
B. To create components for dashboards and layouts
C. To deploy components between two organizations
D. To modify the page layout settings for a custom object
عرض الإجابة
اجابة صحيحة: AB
السؤال #30
Which two strategies should a developer use to avoid hitting governor limits when developing in a multi-tenant environment? (Choose two.)
A. Use collections to store all fields from a related object and not just minimally required fields
B. Use methods from the "Limits" class to monitor governor limits
C. Use SOQL for loops to iterate data retrieved from queries that return a high number of rows
D. Use variables within Apex classes to store large amounts of data
عرض الإجابة
اجابة صحيحة: BC

View The Updated Salesforce Exam Questions

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

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

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

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

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