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

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

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

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

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

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

السؤال #1
How should a developer create a new custom exception class?
A. public class CustomException extends Exception{}
B. CustomException ex = new (CustomException)Exception();
C. public class CustomException implements Exception{}
D. (Exception)CustomException ex = new Exception();
عرض الإجابة
اجابة صحيحة: A
السؤال #2
When importing and exporting data into Salesforce, which two statements are true? (Choose two.)
A. Bulk API can be used to Import large data volumes in development environments without bypassing the storage limits
B. Developer and Developer Pro sandboxes have different storage limits
C. Bulk API can be used to bypass the storage limits when importing large data volumes in development environments
D. Data import wizard is a client application provided by Salesforce
عرض الإجابة
اجابة صحيحة: BD
السؤال #3
What are the methods used to show input in classic and lightning?
A. Use visualforce page in classic and lightning component in lightning
B. PlaceHolder
C. PlaceHolder
عرض الإجابة
اجابة صحيحة: A
السؤال #4
Which two statements accurately represent the MVC framework implementation in Salesforce? Choose 2 answers
A. Validation rules enforce business rules and represent the Controller (C) part of the MVC framework
B. Lightning component HTML files represent the Model (M) part of the MVC framework
C. Triggers that create records represent the Model (M) part of the MVC framework
D. Standard and Custom objects used in the app schema represent the View (V) part of the MVC framework
عرض الإجابة
اجابة صحيحة: AC
السؤال #5
Which three resources in an Azure Component can contain JavaScript functions?
A. Controllers
B. helper
C. Design
D. Style
E. Renderer
عرض الإجابة
اجابة صحيحة: ABE
السؤال #6
A developer must create a ShippingCalculator class that cannot be instantiated and must include a working default implementation of a calculate method, that sub-classes can override.What is the correct implementation of the ShippingCalculator class?
A. Option A
B. Option B
C. Option C
D. Option D
عرض الإجابة
اجابة صحيحة: B
السؤال #7
A Visualforce page is required for displaying and editing Case records that includes both standard and custom functionality defined in an Apex class called myControllerExtension. The Visualforce page should include whichattribute(s) to correctly implement controller functionality?
A. controller="Case" and extensions="myControllerExtension"
B. extensions="myControllerExtension"
C. controller="myControllerExtension"
D. standardController="Case" and extensions="myControllerExtension"
عرض الإجابة
اجابة صحيحة: D
السؤال #8
In the following example, which sharing context will myMethod execute when it is invoked?
A. Sharing rules will be inherited from the calling context
B. Sharing rules Ail be enforced by the instantiating class
C. Sharing rules Ml be enforced for the running user
D. Sharing rules will not be enforced for the running user
عرض الإجابة
اجابة صحيحة: A
السؤال #9
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 class and methods?
A. Option A
B. Option B
C. Option C
D. Option D
عرض الإجابة
اجابة صحيحة: C
السؤال #10
A platform developer at Universal Containers needs to create a custom button for the Account object that, when clicked, will perform a series of calculations and redirect the user to a custom Visualforce page. Which three attributes need to be defined with values in thetag to accomplish this? (Choose three.)
A. action
B. renderAs
C. standardController
D. readOnly
E. extensions
عرض الإجابة
اجابة صحيحة: BCE
السؤال #11
What is the proper process for an Apex Unit Test
A. Query for test data using SeeAllData = true
B. Query for test data using SeeAllData = true
C. Create data for testing
D. Create data for testing
عرض الإجابة
اجابة صحيحة: D
السؤال #12
The Account object in an organization has a master detail relationship to a child object called Branch. The following automations exist:1. Rollup summary fields 2. Custom validation rules 3. Duplicate rules A developer created a trigger on the Account object. What two things should the developer consider while testing the trigger code? Choose 2 answers
A. Rollup summary fields can cause the parent record to go through Save
B. The trigger may fire multiple times during a transaction
C. Duplicate rules are executed once all DML operations commit to the database
D. The validation rules will cause the trigger to fire again
عرض الإجابة
اجابة صحيحة: AB
السؤال #13
Ursa Major Solar has a custom object, serviceJob-o, with an optional Lookup field to Account called partner-service-Provider_c.The TotalJobs-o field on Account tracks the total number of serviceJob-o records to which a partner service provider Account is related.What is the most efficient way to ensure that the Total job_o field kept up to data?
A. Change TotalJob_o to a roll-up summary field
B. Create a record-triggered flow on ServiceJob_o
C. Create an Apex trigger on ServiceJob_o
D. Create a schedule-triggered flow on ServiceJob_o
عرض الإجابة
اجابة صحيحة: B
السؤال #14
What are two considerations for deciding to use a roll-up summary field? Choose 2 answer's partner.
A. Roll-up summary can be performed on formula fields, but if their formula contains an #Error result, it may affect the summary value
B. Roll-up summary fields do not cause validation rules on the parent object unless that object is edited separately
C. Roll-up cannot be performed on formula fields
D. Roll-up cannot be performed on formula fields that use cross-object references or on-the-fly calculations such as NOW()
عرض الإجابة
اجابة صحيحة: AD
السؤال #15
When is an Apex Trigger required instead of a Process Builder Process?
A. When a record needs to be created
B. When multiple records related to the triggering record need to be updated
C. When a post to Chatter needs to be created
D. When an action needs to be taken on a delete or undelete, or before a DML operation is executed
عرض الإجابة
اجابة صحيحة: D
السؤال #16
The operation manager at a construction company uses a custom object called Machinery to manage the usage and maintenance of its cranes and other machinery. The manager wants to be able to assign machinery to different constructions jobs, and track the dates and costs associated with each job. More than one piece of machinery can be assigned to one construction job. What should a developer do to meet these requirements?
A. Create a lookup field on the Construction Job object to the Machinery object
B. Create a lookup field on the Machinery object to the Construction Job object
C. Create a junction object with Master-Detail Relationship to both the Machinery object and the Construction Job object
D. Create a Master-Detail Lookup on the Machinery object to the Construction Job object
عرض الإجابة
اجابة صحيحة: A
السؤال #17
Which scenario is invalid for execution by unit tests?
A. Executing methods for negative test scenarios
B. Loading the standard Pricebook ID using a system method
C. Loading test data in place of user input for Flows
D. Executing methods as different users
عرض الإجابة
اجابة صحيحة: C
السؤال #18
A large corporation stones Orders and Line Items In Salesforce for different lines of business. Users are a.. see Orders across the entire organization, but, for security purposes, should only be able to see the Line If Orders in their line of business.Which type of relationship should be used between Line Items and Orders?
A. Master-Detail
B. Lookup
C. Direct Lookup
D. Indirect Lookup
عرض الإجابة
اجابة صحيحة: A
السؤال #19
Which action causes a before trigger to fire by default for Accounts?
A. Renaming or replacing picklist
B. Importing data using the Data Loader and the Bulk API
C. Converting Leads to Contact accounts
D. Updating addresses using the Mass Address update tool
عرض الإجابة
اجابة صحيحة: B
السؤال #20
As a part of class implementation a developer must execute a SOQL query against a large data ser based on the contact object. The method implementation is as follows.Which two methods are best practice to implement heap size control for the above code? (Choose 2 Answers)
A. Use the FOR UPDATE option on the SOQL query to lock down the records retrieved
B. Use visual keyword when declaring the retrieve variable
C. Use a SOQL FOR loop, to chunk the result set in batches of 200 records
D. Use WHERE clauses on the SOQL query to reduce the number of records retrieved
عرض الإجابة
اجابة صحيحة: BC
السؤال #21
What should a developer do to check the code coverage of a class after running all tests?
A. View the Code Coverage column in the view on the Apex Classes page
B. View the Class test Coverage tab on the Apex Class record
C. view the overall Code Coverage panel of the tab in the Developer Console
D. Select and run the class on the Apex Test Execution page
عرض الإجابة
اجابة صحيحة: B
السؤال #22
code below deserializes input into a list of Accounts.Which code modification should be made to insert the Accounts so that field-level security is respected?
A. 01: Public with sharing class AcctCreator
B. 05: If (SobjectType
C. 05: Accts = database
D. 05: SobjectAcessDecision sd= Security,stripINaccessible(AccessType,CREATABLE,
عرض الإجابة
اجابة صحيحة: A
السؤال #23
Given the following code snippet, that is part of a custom controller for a Visualforce page:In which two ways can the try/catch be enclosed to enforce object-level permissions and prevent the DML statement from being executed if the current logged-in user does not have the appropriate level of access to the object? (Choose two.)
A. Use if(thisContact
B. Use if(Schema
C. Use if(Schema
D. Use if(Schema
عرض الإجابة
اجابة صحيحة: CD
السؤال #24
Which two number expressions evaluate correctly? (Choose two.)
A. Double d = 3
B. Integer I = 3
C. Decimal d = 3
D. Long l = 3
عرض الإجابة
اجابة صحيحة: AC
السؤال #25
Universal Containers has an order system that uses on Order Number to identify an order for customers service agents. Order records will be imported into Salesforce.How should the "Order Number field be defined in Salesforce.
A. Lookup
B. Direct Lookup
C. Number with External ID
D. Indirect Lookup
عرض الإجابة
اجابة صحيحة: C
السؤال #26
Which two Apex data types can be used to reference a Salesforce record ID dynamically? (Choose two.)
A. ENUM
B. sObject
C. External ID
D. String
عرض الإجابة
اجابة صحيحة: AD
السؤال #27
A business has a proprietary Order Management System (OMS) that creates orders from their website and ... the order. When the order is created in the OMS, an integration also creates an order record in Salesforce ... relates it to the contact as identified by the email on the order. As the order goes through different stages in OMS, the integration also updates it in Salesforce. It is notified that each update from the OMS creates a new order record in Salesforce.Which two actions prevent the duplicate orde
A. Ensure that the order number in the OMS is unique
B. Use the order number from the OMS as an external ID
C. Use the email on the contact record as an external ID
D. Write a before trigger on the order object to delete any duplicates
عرض الإجابة
اجابة صحيحة: AD
السؤال #28
Which approach should a developer take to automatically add a "Maintenance Plan" to each Opportunity that includes an "Annual Subscription" when an opportunity is closed?
A. Build a OpportunityLineItem trigger that adds a PriceBookEntry record
B. Build an OpportunityLineItem trigger to add an OpportunityLineItem record
C. Build an Opportunity trigger that adds a PriceBookEntry record
D. Build an Opportunity trigger that adds an OpportunityLineItem record
عرض الإجابة
اجابة صحيحة: D
السؤال #29
A developer has a requirement to create an Order when an Opportunity reaches a 'Closed-Won' status.Which tool should be used to implement this requirement?
A. Lightning Component
B. Apex Trigger
C. Lightning Flow
D. Process Builder
عرض الإجابة
اجابة صحيحة: D
السؤال #30
As part of a data cleanup strategy, AW Computing wants to proactively delete associated opportunity records when the related Account is deleted. Which automation tool should be used to meet this business requirement?
A. Workflow Rules
B. Scheduled job
C. Record-Triggered Flow
D. Process Builder
عرض الإجابة
اجابة صحيحة: C

View The Updated Salesforce Exam Questions

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

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

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

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

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