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

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

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

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

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

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

السؤال #1
A developer is tasked to perform a security review of the ContactSearch Apex class that exists in the system. Whithin the class, the developer identifies the following method as a security threat: List performSearch(String lastName){ return Database.query('Select Id, FirstName, LastName FROM Contact WHERE LastName Like %'+lastName+'%); } What are two ways the developer can update the method to prevent a SOQL injection attack? Choose 2 answers
A. Use variable binding and replace the dynamic query with a static SOQL
B. Use the escapeSingleQuote method to sanitize the parameter before its use
C. Use a regular expression on the parameter to remove special characters
D. Use the @Readonly annotation and the with sharing keyword on the class
عرض الإجابة
اجابة صحيحة: AB
السؤال #2
Using the Schema Builder, a developer tries to change the API name of a field that is referenced in an Apex test class. What is the end result?
A. The API name is not changed and there are no other impacts
B. The API name of the field and the reference in the test class is changed
C. The API name of the field is changed, and a warning is issued to update the class
D. The API name of the field and the reference in the test class is updated
عرض الإجابة
اجابة صحيحة: C
السؤال #3
What are two characteristics of partial copy sandboxes versus full sandboxes? Choose 2 answers
A. Includes a subset of metadata
B. Requires a sandbox template
C. Supports more frequent refreshes
D. Provides more data record storage
عرض الإجابة
اجابة صحيحة: CD
السؤال #4
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 list view on the Apex Classes page
B. View the Class Test Percentage tab on the Apex Class fist view m Salesforce Setup
C. View Use cede coverage percentage for the class using the Overall Code Coverage panel in the Developer Console Tests tab
D. Select and run the class on the Apex Test Execution page in the Developer Console
عرض الإجابة
اجابة صحيحة: B
السؤال #5
Which two sfdx commands can be used to add testing data to a Developer sandbox?
A. Forced: data:bulk:upsert
B. Forced: data: object :upsert
C. Forced: data: tree: upsert
D. Forced: data:async:upsert
عرض الإجابة
اجابة صحيحة: AC
السؤال #6
A developer needs to implement the functionality for a service agent to gather multiple pieces of information from a customer in order to send a replacement credit card. Which automation tool meets these requirements?
A. Lightning Component
B. Flow Builder
C. Process Builder
D. Approval Process
عرض الإجابة
اجابة صحيحة: B
السؤال #7
A developer is asked to prevent anyone other than a user with Sales Manager profile from changing the Opportunity Status to Closed Lost if the lost reason is blank. Which automation allows the developer to satisfy this requirement in the most efficient manner?
A. A record trigger flow on the Opportunity object
B. An Apex trigger on the Opportunity object
C. approval process on the Opportunity object
D. An error condition formula on a validation rule on Opportunity
عرض الإجابة
اجابة صحيحة: D
السؤال #8
Which trigger event allows a developer to update fields in the Trigger.new list without using an additional DML statement?Choose 2 answers
A. Before insert
B. Before update
C. After update
D. After insert
عرض الإجابة
اجابة صحيحة: AB
السؤال #9
A developer migrated functionality from JavaScript Remoting to a Lightning web component and wants to use the existing getOpportunities() method to provide data. What to do now?
A. The method must be decorated with (cacheable=true)
B. The method must be decorated with @AuraEnabied
C. The method must return a JSON Object
D. The method must return a String of a serialized JSON Array
عرض الإجابة
اجابة صحيحة: A
السؤال #10
Universal Container uses Salesforce to create orders.When an order is created, it needs to sync with the-in-house order fulfillment system. The order fulfillment system can accept SOAP messages over the HTTPS. If the connection fails, messages should be retried for up to 24 hours.What is the recommended approach to sync the orders in Salesforce with the order fulfillment system?
A. Set up a Workflow Rule outbound message to the order fulfillment system
B. Create an after insert trigger on the Order object to make a callout to the order fulfilment system
C. Write an Apex SOAP service to integrate with the order fulfillment system
D. Use Process Bulkier to call an invocable Apex method that sends a message to the order fulfilment system
عرض الإجابة
اجابة صحيحة: B
السؤال #11
Universal Container is building a recruiting app with an Applicant object that stores information about an individual person that represents a job. Each application may apply for more than one job. What should a developer implement to represent that an applicant has applied for a job?
A. Master-detail field from Applicant to Job
B. Formula field on Applicant that references Job
C. Junction object between Applicant and Job
D. Lookup field from Applicant to Job
عرض الإجابة
اجابة صحيحة: A
السؤال #12
Which annotation should a developer use on an Apex method to make it available to be wired to a property in a Lightning web component?
A. @RemoteAction
B. @AureEnabled
C. @AureEnabled (cacheable=true)
D. @RemoteAction(|cacheable=true)
عرض الإجابة
اجابة صحيحة: C
السؤال #13
A method is passed a list of generic sObjects as a parameter. What should the developer do to determine which object type (Account, Lead, or Contact, for example) to cast each sObject?
A. Use the first three characters of the sObject ID to determine the sObject type
B. Use the getSObjectType method on each generic sObject to retrieve the sObject token
C. Use the getSObjectName method on the sObject class to get the sObject name
D. Use a try-catch construct to cast the sObject into one of the three sObject types
عرض الإجابة
اجابة صحيحة: B
السؤال #14
What is a good practice for a developer to follow when writing a trigger? (Choose 2)
A. Using @future methods to perform DML operations
B. Using the Map data structure to hold query results by ID
C. Using the Set data structure to ensure distinct records
D. Using synchronous callouts to call external systems
عرض الإجابة
اجابة صحيحة: BC
السؤال #15
How should a developer make sure that a child record on a custom object, with a lookup to the Account object, has the same sharing access as its associated account?
A. Create a Sharing Rule comparing the custom object owner to the account owner
B. Create a validation rule on the custom object comparing the record owners on both records
C. Include the sharing related list on the custom object page layout
D. Ensure that the relationship between the objects is Master-Detail
عرض الإجابة
اجابة صحيحة: D
السؤال #16
What are two uses for External IDs? (Choose two.)
A. To create relationships between records imported from an external system
B. To create a record in a development environment with the same Salesforce ID as in another environment
C. To identify the sObject type in Salesforce
D. To prevent an import from creating duplicate records using Upsert
عرض الإجابة
اجابة صحيحة: AD
السؤال #17
Universal Container use a simple order Management app. On the Order Lines, the order line total is calculated by multiplying the item price with the quantity ordered. There is a Master-Detail relationship between the Order and the Order Lines object.What is the practice to get the sum of all order line totals on the order header?
A. Roll-Up Summary Field
B. Apex Trigger
C. Process Builder
D. Declarative Roll-Up Summaries App
عرض الإجابة
اجابة صحيحة: A
السؤال #18
Which code should be used to update an existing Visualforce page that uses standard Visualforce components so that the page matches the look and feel of Lightning Experience?
A.
B.
C.
D.
عرض الإجابة
اجابة صحيحة: C
السؤال #19
Get Cloudy Consulting (GCC) has a multitude of servers that host its customers' websites. GCC wants to provide a servers status page that is always on display in its call center. It should update in real time with any changes made to any servers. To accommodate this on the server side, a developer created a server Update platform event.The developer is working on a Lightning web component to display the information.
A. import ( subscribe, unsubscribe, onError ) from 'lightning/empApi '
B. import ( subscribe, unsubscribe, onError ) from 'lightning/MessageChannel'
C. import ( subscribe, unsubscribe, onError ) from 'lightning/ServerUpdate'
D. import ( subscribe, unsubscribe, onError ) from 'lightning/pubsub'
عرض الإجابة
اجابة صحيحة: A
السؤال #20
Which two are phases in the Aura application event propagation framework? Choose 2 answers
A. Emit
B. Control
C. Default
D. Bubble
عرض الإجابة
اجابة صحيحة: CD
السؤال #21
Which approach should a developer use to add pagination to a Visualforce page?
A. A StandardController
B. The Action attribute for a page
C. The extensions attribute for a page
D. A StandardSetController
عرض الإجابة
اجابة صحيحة: D
السؤال #22
The values 'High', 'Medium', and 'Low' are identified as common values for multiple picklists across different objects.What is an approach a developer can take to streamline maintenance of the picklists and their values, while also restricting the values to the ones mentioned above?
A. Create the Picklist on each object and use a Global Picklist Value Set containing the values
B. Create the Picklist on each object as a required field and select "Display values alphabetically, not in the order entered"
C. Create the Picklist on each object and add a validation rule to ensure data integrity
D. Create the Picklist on each object and select "Restrict picklist to the values defined in the value set"
عرض الإجابة
اجابة صحيحة: A
السؤال #23
What is a capability of formula fields? (Choose 3)
A. Generate a link using the HYPERLINK function to a specific record in a legacy system
B. Display the previous values for a field using the PRIORVALUE function
C. Return and display a field value from another object using the VLOOKUP function
D. Determine if a datetime field has passed using the NOW function
E. Determine which of three different images to display using the IF function
عرض الإجابة
اجابة صحيحة: ADE
السؤال #24
A developer writes a SOQL query to find child records for a specific parent. How many levels can be returned in a single query?
A. 1
B. 7
C. 5
D. 3
عرض الإجابة
اجابة صحيحة: C
السؤال #25
what are the three languages used in the visualforce page?
A. Javascript, CSS, HTML
B. Apex, Json, SQL
C. C++, CSS, query
عرض الإجابة
اجابة صحيحة: A
السؤال #26
A developer must create a DrawList class that provides capabilities defined in the Sortable and Drawable interfaces.Which is the correct implementation?
A. Option A
B. Option B
C. Option C
D. Option D
عرض الإجابة
اجابة صحيحة: B
السؤال #27
What can be developed using the Lightning Component framework?
A. Hosted web applications
B. Single-page web apps
C. Dynamic web sites
D. Salesforce integrations
عرض الإجابة
اجابة صحيحة: B
السؤال #28
Universal Containers hires a developer to build a custom search page to help user- find the Accounts they want. Users will be able to search on Name, Description, and a custom comments field.Which consideration should the developer be aware of when deciding between SOQ1 Mid SOSI ? Choose 2 answers
A. SOSL is able to return more records
B. SOQL is faster for text searches
C. SOSL is faster for tent searches
D. SOQL is able to return more records
عرض الإجابة
اجابة صحيحة: CD
السؤال #29
Which three steps allow a custom SVG to be included in a Lightning web component? Choose 3 answers
A. Upload the SVG as a static resource
B. Import the static resource and provide a getter for it in JavaScript
C. Reference the getter in the HTML template
D. Reference the import in the HTML template
E. Import the SVG as a content asset file
عرض الإجابة
اجابة صحيحة: ABC
السؤال #30
An Approval Process is defined In the Expense_item_c object. A business rule dictates that whenever a ... clients the Status to Submitted on an Expense_Item_c record related to the expense report must enter the approval process individually. A developers asked to explore if this automation can be implemented without writing any Apex code.Which statement is true regarding this automation request?
A. This can only be automated with Apex code
B. The developer can use a record triggered flow with Actions
C. This approval step cannot be automated and must be done manually
D. The developer can use Einstein Next Best Actions
عرض الإجابة
اجابة صحيحة: A

View The Updated Salesforce Exam Questions

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

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

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

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

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