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

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

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

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

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

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

السؤال #1
Which two queries can a developer use in a visualforce controller to protect against SOQL injection Vulnerabilities? Choose 2 answers
A. String qryName = '%' + String
B. String qryName = '%' + name '%'; String qryString = 'SELECT Id FROM Contact WHERE Name LIKE :qryNAme'; List queryResults = Database
C. String qryName = '%' + String
D. String qryString = 'SELECT Id FROM Contact WHERE Name LIKE :qryNAme'; List queryResults = Database
عرض الإجابة
اجابة صحيحة: AD
السؤال #2
The sales management team at Universal Containers requires that the Lead Source field of the Lead record be populated when a Lead is converted. What should be used to ensure that a user populates the Lead Source field prior to converting a Lead?
A. Process Builder
B. Validation Rule
C. Formula Field
D. workflow Rule
عرض الإجابة
اجابة صحيحة: B
السؤال #3
Which two characteristics are true for Aura component events? Choose 2 answers
A. The event propagates to every owner in the containment hierarchy
B. Depending on the current propagation phase, calling event
C. If a container component needs to handle a component event, add a includeFacets" true" attribute to its handler
D. By default, containers can handle events thrown by components they contain
عرض الإجابة
اجابة صحيحة: AB
السؤال #4
What are three characteristics of change set deployments? Choose 3 answers
A. Change sets can only be used between related organizations
B. Change sets can be used to transfer records
C. Sending a change set between two orgs requires a deployment connection
D. Change sets can deploy custom settings data
E. Deployment is done in a one-way, single transaction
عرض الإجابة
اجابة صحيحة: ABE
السؤال #5
Given the following trigger implementation:trigger leadTrigger on Lead (before update){ final ID BUSINESS_RECORDTYPEID = '012500000009Qad'; for(Lead thisLead : Trigger.new){ if(thisLead.Company != null andand thisLead.RecordTypeId != BUSINESS_RECORDTYPEID){ thisLead.RecordTypeId = BUSINESS_RECORDTYPEID; } } }The developer receives deployment errors every time a deployment is attempted from Sandbox to Production.What should the developer do to ensure a successful deployment?
A. Ensure BUSINESS_RECORDTYPEID is retrieved using Schema
B. Ensure a record type with an ID of BUSINESS_RECORDTYPEID exists on Production prior to deployment
C. Ensure BUSINESS_RECORDTYPEID is pushed as part of the deployment components
D. Ensure the deployment is validated by a System Admin user on Production
عرض الإجابة
اجابة صحيحة: B
السؤال #6
A developer at Universal Containers is tasked with implementing a new Salesforce application that must be able to be maintained completely by their company's Salesforce administrator. Which three options should be considered for building out the business logic layer of the application? (Choose three.)
A. Process Builder
B. Scheduled Jobs
C. Invocable Actions
D. Workflows
E. Validation Rules
عرض الإجابة
اجابة صحيحة: ADE
السؤال #7
Universal Containers wants to use an external Web Service provided by a third - party vendor to validate that shipping and billing addresses are correct. The current vendor uses basic password authentication, but Universal Containers might switch to a different vendor who uses OAuth. What would allow Universal Containers to switch vendors without updating the code to handle authentication?
A. Custom Setting (List)
B. Custom Metadata
C. Named Credential
D. Dynamic Endpoint
عرض الإجابة
اجابة صحيحة: C
السؤال #8
The sales management team requires that the lead source field of the Lead record be populated when Lead is converted. What would a developer use to ensure that a user populates the Lead source field?
A. Validation rule
B. Formula field
C. Workflow rule
D. Process builder
عرض الإجابة
اجابة صحيحة: A
السؤال #9
In which order does Salesforce execute events upon saving a record?
A. Before Triggers; Validation Rules; After Triggers; Assignment Rules; Workflow Rules; Commit
B. Validation Rules; Before Triggers; After Triggers; Workflow Rules; Assignment Rules; Commit
C. Before Triggers; Validation Rules; After Triggers; Workflow Rules; Assignment Rules; Commit
D. Validation Rules; Before Triggers; After Triggers; Assignment Rules; Workflow Rules; Commit
عرض الإجابة
اجابة صحيحة: A
السؤال #10
Which statement should a developer avoid using inside procedural loops? (Choose 2)
A. System
B. List contacts = [SELECT Id, Salutation, FirstName, LastName, Email FROM Contact WHERE AccountId = :a
C. If(o
D. Update contactList;
عرض الإجابة
اجابة صحيحة: BD
السؤال #11
The following code snippet is executed by a Lightning web component in an environment with more than 2,000 lead records:@Aura public void static updateLeads() { for(Lead thisLead : [SELECT Origin_c FROM Lead]) { thisLead.LeadSource = thisLead:Origin; update thisLead; } }Which governor limit will likely be exceeded within the Apex transaction?
A. Total number of DML statement issued
B. Total number of SOQL queries issued
C. Total number of records retrieved by SOQL queries
D. Total number of records processed as a result of DML statements
عرض الإجابة
اجابة صحيحة: C
السؤال #12
A developer creates a custom exception as shown below:What are two ways the developer can fire the exception in Apex? Choose 2 answers
A. Throw new ParityException (parity does not match);
B. New ParityException( );
C. New ParityException (parity does not match);
D. Throw new parityException ( );
عرض الإجابة
اجابة صحيحة: AD
السؤال #13
Universal Containers wants Opportunities to be locked from editing when reaching the Closed/Won stage.Which two strategies should a developer use to accomplish this? (Choose two.)
A. Use a Flow Builder
B. Use a validation rule
C. Use the Process Automation Settings
D. Mark fields as read-only on the page layout
عرض الإجابة
اجابة صحيحة: BD
السؤال #14
A Salesforce Administrator is creating a record-triggered flow. When certain criteria are met, the flow must call an Apex method to execute complex validation involving several types of objects. When creating the Apex method, which annotation should a developer use to ensure the method can be used within the flow?
A. @future
B. @RemoteAction
C. @InvocableMethod
D. @AuraEnaled
عرض الإجابة
اجابة صحيحة: C
السؤال #15
An org tracks customer orders on an Order object and the line items of an Order on the Line Item object. The Line Item object has a Master/Detail relationship to the Order object. A developer has a requirement to calculate the order amount on an Order and the line amount on each Line Item based on quantity and price.What is the correct implementation?
A. Write a single before trigger on the Line Item that calculates the item amount and updates the order amount on the Order
B. Write a process on the Line Item that calculates the item amount and order amount and updates the fields on the Line Item and the Order
C. Implement the line amount as a numeric formula field and the order amount as a roll-up summary field
D. Implement the line amount as a currency field and the order amount as a SUM formula field
عرض الإجابة
اجابة صحيحة: D
السؤال #16
Which SOQL query successfully returns the Accounts grouped by name?
A. SELECT Type, Max(CreatedDate) FROM Account GROUP BY Name
B. SELECT Name, Max(CreatedDate) FROM Account GROUP BY Name
C. SELECT Id, Type, Max(CreatedDate) FROM Account GROUP BY Name
D. SELECT Type, Name, Max(CreatedDate) FROM Account GROUP BY Name LIMIT 5
عرض الإجابة
اجابة صحيحة: B
السؤال #17
A developer wrote a workflow email alert on case creation so that an email is sent to the case owner manager when a case is created. When will the email be sent?
A. After Committing to database
B. Before Trigger execution
C. After Trigger execution
D. Before Committing to database
عرض الإجابة
اجابة صحيحة: A
السؤال #18
The following automations already exist on the Account object; 1. A workflow rule that updates a field when a certain criteria is met 2. A custom validation on a field 3. A How that updates related contact records 4. A developer created a trigger on the Account object. What should the developer consider while testing the trigger code?
A. The flow may be launched multiple times
B. Workflow rules will fire only after the trigger has committed all DML operations to the database
C. A workflow rule field update will cause the custom validation to run again
D. The trigger may fire multiple times during a transaction
عرض الإجابة
اجابة صحيحة: D
السؤال #19
Where would a developer build a managed package?
A. Developer Sandbox
B. Unlimited Edition
C. Partial Copy Sandbox
D. Developer Edition
عرض الإجابة
اجابة صحيحة: D
السؤال #20
A developer receives an error when trying to call a global server-side method using the emoteAction decorator.How can the developer resolve the error?
A. Change the function signature to be private static
B. Add static to the server-side method signature
C. A Decorate the server-side method with (static=true)
D. Decorate the server-side method with (static=false)
عرض الإجابة
اجابة صحيحة: B
السؤال #21
Einstein Next Best Action Is configured at Universal Containers to display recommendations to internal users on the Account detail page. If the recommendation is approved, a new opportunity record and task should be generated. If the recommendation is rejected, an Apex method must be executed to perform a callout to an external system.Which three factors should a developer keep Hi mind when implementing the Apex method?Choose 3 answers
A. The method must use the @AuraEnabled annotation
B. The method must use the @Future annotation
C. The method must use the @invocableMethod annotation
D. The method must be defined as static
E. The method must be defined as public
عرض الإجابة
اجابة صحيحة: BDE
السؤال #22
A team of developers is working on a source-driven project that allows them to work independently, with many different org configurations.Which type of Salesforce orgs should they use for their development?
A. Developer orgs
B. Developer sandboxes
C. Full Copy sandboxes
D. Scratch orgs
عرض الإجابة
اجابة صحيحة: D
السؤال #23
A developer is migrating a Visualforce page into a Lightning web component.The Visualforce page shows information about a single record. The developer decides to use Lightning Data Service to access record data.Which security consideration should the developer be aware of?
A. Lightning Data Service handles sharing rules and field-level security
B. Lightning Data Service ignores field-level security
C. The with sharing keyword must be used to enforce sharing rules
D. The isAccessible ( ) method must be used for field-level access checks
عرض الإجابة
اجابة صحيحة: A
السؤال #24
Which two settings must be defined in order to update a record of a junction object? Choose 2 answers
A. Read access on the primary relationship
B. Read/Write access on the secondary relationship
C. Read/Write access on the primary relationship
D. Read/Write access on the junction object
عرض الإجابة
اجابة صحيحة: BC
السؤال #25
A developer has the controller class below.Which code block will run successfully in an execute anonymous window?
A. myFooController m = new myFooController();System
B. myFooController m = new myFooController();System
C. myFooController m = new myFooController();System
D. myFooController m = new myFooController();System
عرض الإجابة
اجابة صحيحة: C
السؤال #26
What should a developer use to script the deployment and unit test execution as part of continuous integration?
A. Developer Console
B. Execute Anonymous
C. Salesforce CLI
D. VS Code
عرض الإجابة
اجابة صحيحة: C
السؤال #27
Which process automation should be used to send an outbound message without using Apex code?
A. Workflow Rule
B. Process Builder
C. Approval Process
D. Flow Builder
عرض الإجابة
اجابة صحيحة: A
السؤال #28
While writing an Apex class that creates Accounts, a developer wants to make sure that all required fields are handled properly. Which approach should the developer use to be sure that the Apex class works correctly?
A. Include a try/catch block to the Apex class
B. Place Holder
C. Place Holder
عرض الإجابة
اجابة صحيحة: A
السؤال #29
An Opportunity needs to have an amount rolled up from a custom object that is not in a master-detail relationship. How can this be achieved?
A. Write a trigger on the child object and use a red-black tree sorting to sum the amount for all related child objects under the Opportunity
B. Write a Process Builder that links the custom object to the Opportunity
C. Write a trigger on the child object and use an aggregate function to sum the amount for all related child objects under the Opportunity
D. Use the Streaming API to create real-time roll-up summaries
عرض الإجابة
اجابة صحيحة: C
السؤال #30
A developer needs to provide a Visualforce page that lets users enter Product-specific details during a Sales cycle. How can this be accomplished? (Choose 2)
A. Download a Managed Package from the AppExhange that provides a custom Visualforce page to modify
B. Copy the standard page and then make a new Visualforce page for Product data entry
C. Download an Unmanaged Package from the AppExchange that provides a custom Visualforce page to modify
D. Create a new Visualforce page and an Apex controller to provide Product data entry
عرض الإجابة
اجابة صحيحة: CD

View The Updated Salesforce Exam Questions

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

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

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

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

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