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

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

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

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

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

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

السؤال #1
A developer needs to create a Visualforce page that displays Case dat. The page will be used by both support reps and support managers. The Support Rep profile does not allow visibility of the Customer_Satisfaction_c field, but the Support Manager profile does.How can the developer create the page to enforce Field Level Security and keep future maintenance to a minimum?
A. Create one Visualforce Page for use by both profiles
B. Use a new Support Manager permission set
C. Create a separate Visualforce Page for each profile
D. Use a custom controller that has the with sharing keywords
عرض الإجابة
اجابة صحيحة: D
السؤال #2
A developer is asked to create a PDF quote document formatted using the company's branding guidelines, and automatically save it to the Opportunity record. Which two ways should a developer create this functionality? (Choose two.)
A. Install an application from the AppExchange to generate documents
B. Create a Visualforce page with custom styling
C. Create an email template and use it in Process Builder
D. Create a visual flow that implements the company's formatting
عرض الإجابة
اجابة صحيحة: AB
السؤال #3
Universal Containers decides to use purely declarative development to build out a new Salesforce application.Which three options can be used to build out the business logic layer for this application?Choose 3 answers
A. Flow Builder
B. Validation Rules
C. Process builder
عرض الإجابة
اجابة صحيحة: ABC
السؤال #4
A developer wrote the following two classes:The StatusFetcher class successfully compiled and saved. However, the Calculator class has a compile time error. How should the developer fix this code?
A. Change the class declaration for the statusFetcher class to public with inherited sharing
B. Make the is Active method in the StatusFetcher class public
C. Make the doCalculations method in the Calculation class private
D. Change the class declaration for the Calculator class to public with inherited sharing
عرض الإجابة
اجابة صحيحة: B
السؤال #5
A developer wants to invoke on outbound message when a record meets a specific criteria.Which three features satisfy this use case?Choose 3 answer
A. Approval Process has the capacity to check the record criteria and send an outbound message without Apex Code
B. Process builder can be used to check the record criteria and send an outbound message with Apex Code
C. workflows can be used to check the record criteria and send an outbound message
D. Process builder can be used to check the record criteria and send an outbound messagewithout Apex Code
E. Visual Workflow can be used to check the record criteria and send an outbound message without Apex Code
عرض الإجابة
اجابة صحيحة: ABC
السؤال #6
Which statement generates a list of Leads and Contacts that have a field with the phrase 'ACME'?
A. ListsearchList = [FIND "*ACME*" IN ALL FIELDS RETURNING Contact, Lead];
B. List> searchList = [FIND "*ACME*" IN ALL FIELDS RETURNING Contact, Lead];
C. List> searchList = [SELECT Name, ID FROM Contact, Lead WHERE Name like '%ACME%'];
D. MapsearchList = [FIND "*ACME*" IN ALL FIELDS RETURNING Contact, Lead];
عرض الإجابة
اجابة صحيحة: B
السؤال #7
Universal Containers decides to use exclusively declarative development to build out a new Salesforce application. Which three options should be used to build out the database layer for the application? Choose 3 answers
A. Roll-Up Summaries
B. Triggers
C. Relationships
D. Process Builder
E. Custom Objects and Fields
عرض الإجابة
اجابة صحيحة: ACD
السؤال #8
A developer at Universal Containers is taked with implementing a new Salesforce application that bwill be maintained completely by their company's Salesforce admiknistrator. Which two options should be considered for buildig out the business logic layerof the application? Chosse 2 answer
A. Validation Rules
B. Record-Triggered flows
C. Scheduled
D. Unvocable Moorche2023-06-13T14:55:00
عرض الإجابة
اجابة صحيحة: AB
السؤال #9
Universal Containers uses 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 best practice to get the sum of all order line totals on the order header?
A. Declarative Roll-Up Summaries App
B. Roll-Up Summary field
C. Process Builder
D. Apex Trigger
عرض الإجابة
اجابة صحيحة: A
السؤال #10
What are three characteristics of static methods? (Choose three.)
A. Initialized only when a class is loaded
B. A static variable outside of the scope of an Apex transaction
C. Allowed only in outer classes
D. Allowed only in inner classes
E. Excluded from the view state for a Visualforce page
عرض الإجابة
اجابة صحيحة: ACE
السؤال #11
What is a benefit of using an after insert trigger over using a before insert trigger?
A. An after insert trigger allows a developer to bypass validation rules when updating fields on the new record
B. An after insert trigger allows a developer to insert other objects that reference the new record
C. An after insert trigger allows a developer to make a callout to an external service
D. An after insert trigger allows a developer to modify fields in the new record without a query
عرض الإجابة
اجابة صحيحة: B
السؤال #12
A developer creates a custom controller and custom Visualforce page by using the following code block:public class myController {public String myString;public String getMyString() {return 'getmyString';}public String getStringMethod1() {return myString;}public String getStringMethod2() {if (myString == null)myString = 'Method2';return myString;}}{!myString}, {!StringMethod1}, {!StringMethod2}, {!myString}What does the user see when accessing the custom page?
A. GetMyString , , Method2 , getMystring
B. , , Method2 , getMyString
C. , , Method2,
D. GetMyString , , ,
عرض الإجابة
اجابة صحيحة: A
السؤال #13
A reviewer is required to enter a reason in the comments field only when a candidate is recommended to be hired. Which action can a developer take to enforce this requirement?
A. Create a required Visualforce component
B. Create a formula field
C. Create a required comments field
D. Create a validation rule
عرض الإجابة
اجابة صحيحة: D
السؤال #14
A developer created a Lightning web component called statusComponent to be inserted into the Account record page.Which two things should the developer do to make the component available?
A. Addtrueto the statusComponent
B. Addlighting _RecordPageto the statusComponent
C. Add < masterLabel>Accountto the statusComponent
D. AddLightning_RecordPageto the statusComponent
عرض الإجابة
اجابة صحيحة: AB
السؤال #15
In which two org types can a developer create new Apex Classes? Choose 2 answers
A. Developer Edition
B. Sandbox
C. Enterprise Edition
D. Unlimited
عرض الإجابة
اجابة صحيحة: AB
السؤال #16
In the Lightning UI, where should a developer look to find information about a Paused Flow Interview?
A. On the Paused Row Interviews related List for a given record
B. In the Paused Interviews section of the Apex Rex Queue
C. In the system debug log by Altering on Paused Row Interview
D. On the Paused Row Interviews component on the Home page
عرض الإجابة
اجابة صحيحة: B
السؤال #17
When an Account's custom picklist field called Customer Sentiment is changed to a value of "Confused", a new related Case should automatically be created. Which two methods should a developer use to create this case? (Choose two.)
A. Process Builder
B. Apex Trigger
C. Custom Button
D. Workflow Rule
عرض الإجابة
اجابة صحيحة: AB
السؤال #18
A developer is asked to create a Visualforce page for Opportunities that allows users to save or merge the current record. Which approach should the developer to meet this requirement?
A. A custom controller
B. A custom controller extension
C. Visualforce page JavaScript
D. Standard controller methods
عرض الإجابة
اجابة صحيحة: A
السؤال #19
A developer is creating a Lightning web component to show a list of sales records.The Sales Representative user should be able to see the commission-field on each record. The Sales Assistance user should be able to see all field on the record except the commission field.How should this be enforced so that the component works for both users without showing any errors?
A. Use Lightning Data Service to get the collection of sales records
B. Use Lightning Locker Service to enforce sharing rules and field-level security
C. Use with SECURITY_EMFoRCED in the SOQL that fetches the data for the component
D. Use security
عرض الإجابة
اجابة صحيحة: D
السؤال #20
Which two scenarios require an Apex method to be called imperatively from a Lightning web component? Choose 2 answer
A. Calling a method that makes a web service callout
B. Calling a method that is not annotated with cacheable-true
C. Calling a method with the click of a button
D. Calling a method that is external to the main controller for the Lightning web component
عرض الإجابة
اجابة صحيحة: BD
السؤال #21
A company wants a recruiting app that models candidates and interviews; displays the total number of interviews on each candidate record; and defines security on interview records that is independent from the security on candidate records.What would a developer do to accomplish this task? Choose 2 answers
A. Create a roll -up summary field on the Candidate object that counts Interview records
B. Create a master -detail relationship between the Candidate and Interview objects
C. Create a lookup relationship between the Candidate and Interview objects
D. Create a trigger on the Interview object that updates a field on the Candidate object
عرض الإجابة
اجابة صحيحة: CD
السؤال #22
What are three characteristics of change set deployments? (Choose three.)
A. They require a deployment connection
B. They can be used to transfer records
C. They can be used only between related organizations
D. They can be used to deploy custom settings data
E. They use an all or none deployment model
عرض الإجابة
اجابة صحيحة: ACE
السؤال #23
Refer to the following Apex code:Integer x = 0; do { x = 1; x++; } while (x < 1); system.debug(x);What is the value of x when it is written to the debug log?
A. 0
B. 1
C. 2
D. 3
عرض الإجابة
اجابة صحيحة: C
السؤال #24
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. break;
B. Continue
C. Next
D. Exit
عرض الإجابة
اجابة صحيحة: A
السؤال #25
A developer has a unit test that is failing. To identify the issue, the developer copies the code inside the test method and executes it via the Execute Anonymous Apex Tool. The code then executes without failing. Why did the unit test failed, but not the Execute Anonymous?
A. The test method has a syntax error in the code
B. The test method relies on existing data in the database
C. The test method use a try/catch block
D. The test method calls an @future method
عرض الإجابة
اجابة صحيحة: B
السؤال #26
A developer needs to prevent the creation of Request_c records when certain conditions exist in the system. A RequestLogic class exists to checks the conditions. What is the correct implementation?
A. Trigger RequestTrigger on Request (after insert) { RequestLogic
B. Trigger RequestTrigger on Request (before insert) { RequestLogic
C. Trigger RequestTrigger on Request (before insert) { if (RequestLogic
D. Trigger RequestTrigger on Request (after insert) { if (RequestLogic
عرض الإجابة
اجابة صحيحة: B
السؤال #27
Universal Containers has implemented an order management application. Each Order can have one or more Order Line items. The Order Line object is related to the Order via a master-detail relationship. For each Order Line item, the total price is calculated by multiplying the Order Line item price with the quantity ordered.What is the best practice to get the sum of all Order Line item totals on the Order record?
A. Roll-up summary field
B. Quick action
C. Apex trigger
D. Formula field
عرض الإجابة
اجابة صحيحة: A
السؤال #28
A developer is writing tests for a class and needs to insert records to validate functionality. Which annotation method should be used to create record for every method in the test class?
A. @isTest (SeeAllData-true)
B. @FreTest
C. @TestSetup
D. @StartTest
عرض الإجابة
اجابة صحيحة: C
السؤال #29
A developer needs to prevent the creation of Request records when certain conditions exist in the system. A RequestLogic class exists that checks the conditions. What is the correct implementation?
A. Option A
B. Option B
C. Option C
D. Option D
عرض الإجابة
اجابة صحيحة: D
السؤال #30
A software company uses the following objects and relationships:1. Case: to handle customer support issues 2. Defect_c: a custom object to represent known issues with the company's software 3. case_Defect_c: a junction object between Case and Defector to represent that a defect Is a customer issueWhat should be done to share a specific Case-Defect_c record with a user?
A. Share the Case_Defect_c record
B. Share the parent Case record
C. Share the parent Defect_c record
D. Share the parent Case and Defect_c records
عرض الإجابة
اجابة صحيحة: D

View The Updated Salesforce Exam Questions

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

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

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

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

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