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

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

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

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

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

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

السؤال #1
Which three methods help ensure quality data?
A. Create a lookup filter
B. Adding an error to a field in before trigger
C. Sending an email alert using a workflow rule
D. Handling an exception in Apex
E. Adding a validation rule
عرض الإجابة
اجابة صحيحة: ACE
السؤال #2
A developer wants to use all of the functionality provided by the standard controller for an object, but needs to override the Save standard action in a controller extension. Which two are required in the controller extension class?
A. Create a method named Save with a return data type of PageReference
B. Create a method that references this
C. Define the class with a constructor that takes an instance of StandardController as a parameter
D. Define the class with a constructor that creates a new instance of the StandardController class
عرض الإجابة
اجابة صحيحة: AC
السؤال #3
Universal Containers (UC) processes orders in Salesforce in a custom object, ord=xr <. They also allow sales reps to upload CSV files with thousands of orders at a time. A developer is tasked with integrating orders placed in Salesforce with UC’s enterprise resource planning (ERP) system. After the status for an order__ c is first set to 'Placed’, the order information must be sent to a REST endpoint in the ERP system that can process one order at a time. What should the developer implement to accomplish th
A. Callout from an Qfuture method called from a trigger
B. Callout from a Batchable class called from a scheduled job
C. Flow with a callout from an invocable method
D. Callout from a Queueable class called from a triggercorrect
عرض الإجابة
اجابة صحيحة: D
السؤال #4
A Visual force page displays two fields named Phone Number and Email.User1 has access to Phone Number, but not to Email.User2 has access to Email, but not Phone NumberA developer needs to ensure that User1 can only see Phone Number, and User2 can only see Email.Which method can the developer use to achieve this?
A. Schema isUpdateable() method
B. Schema isAccessible() method
C. Schema isReadable() method
D. Schema isCreateable() method
عرض الإجابة
اجابة صحيحة: B
السؤال #5
A developer wants to send an outbound message when a record meets a specific criteria. Which two features satisfy this use case?
A. Flow Builder can be used to check the record criteria and send an outbound message
B. Approval Process can be used to check the record criteria and send an outbound message without Apex code
C. Entitlement Process can be used to check the record criteria and send an outbound message without Apex code
D. Next Best Action can be used to check the record criteria and send an outbound message
عرض الإجابة
اجابة صحيحة: ABC
السؤال #6
Which tool can deploy destructive changes to Apex classes in production?
A. Workbench
B. Developer Console
C. Salesforce Setup
D. Change Sets
عرض الإجابة
اجابة صحيحة: A
السؤال #7
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 additional information?
A. @InvocableMethod(label='Additional Info') public ListgetInfo(ListcontactIds) { /*implementation*/ }
B. @InvocableMethod(label='additional Info') public static ContactInfo getInfo(Id contactId) { /*implementation*/ }
C. @invocableMethod(label)='Additional Info') public static ListgetInfo(ListcontactIds) { /*Implementation*/ }
D. @InvocableMethod(Label='additional Info') public ContactInfo(Id contactId) { /*implementation*/ }
عرض الإجابة
اجابة صحيحة: C
السؤال #8
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. Use the Streaming API to create real-time roll-up summaries
B. Write a trigger on the child object and use an agaregate function to sum the amount for all related child objects under the Opportunity
C. Use the Metadata API to create real-time roll-up summaries,
D. Write a trigger on the Opportunity object and use tree sorting to sum the amount for all related child objects under the Opportunity
عرض الإجابة
اجابة صحيحة: B
السؤال #9
If apex code executes inside the execute() method of an Apex class when implementing the Batchable interface, which statement are true regarding governor limits? Choose 2 answers
A. The Apex governor limits might be higher due to the asynchronous nature of the transaction
B. The apex governor limits are reset for each iteration of the execute() mrthod
C. The Apex governor limits are relaxed while calling the costructor of the Apex class
D. The Apex governor limits cannot be exceeded due to the asynchronous nature of the transaction,
عرض الإجابة
اجابة صحيحة: AB
السؤال #10
In an organization that has enabled multiple currencies, a developer needs to aggregate the sum of the Estimated_value__c currency field from the CampaignMember object using a roll-up summary field called Total_estimated_value__c on Campaign.
A. The values in Campaignmember
B. The values in CampaignMember
C. The values in CampaignMember
D. The values In CampaignMember
عرض الإجابة
اجابة صحيحة: A
السؤال #11
How many levels of child records can be returned in a single SOQL query from one parent object?
A. 1
B. 3
C. 5
D. 7
عرض الإجابة
اجابة صحيحة: A
السؤال #12
Which is a valid apex assignment?
A. Integer x=5 * 1,0
B. Integer = 5,0
C. Double x = 5
D. Float x = 5
عرض الإجابة
اجابة صحيحة: C
السؤال #13
A developer needs to avoid potential system problems that can arise in a multi-tenant architecture. Which requirement helps prevent poorty written applications from being deployed to a production environment?
A. SOQL queries must reference sObActs with their appropriate namespace
B. All Apex code must be annotated with the with sharing keyword
C. Unit tests must cover at least 75% of the application's Apex code
D. All validation rules must be active before they can be deployed
عرض الإجابة
اجابة صحيحة: C
السؤال #14
A developer creates a custom controller and a custom Visualforce page by using the code block below:public class MyController { public String myString { get { if (myString == null) { myString = 'a'; } return myString; } private set; } public string getMyString (){ return 'getMyString'; } public string getStringMethod () { if (myString == null) { myString = 'b'; } return myString; } }{!StringMethod}, {!myString}, {!myString}What can the user expect to see when accessing the custom page?
A. A, a, a
B. B, b, b
C. A, b, getMyString
D. B, a, getMyString
عرض الإجابة
اجابة صحيحة: A
السؤال #15
Which type of code represents the Model in the MVC architecture on the Force.com platform?
A. A Controller Extension method that uses SOQL to query for a list of Account records
B. Custom JavaScript that processes a list of Account records
C. A list of Account records returned from a Controller Extension method
D. A Controller Extension method that saves a list of Account records
عرض الإجابة
اجابة صحيحة: C
السؤال #16
A candidate may apply to multiple jobs at the company Universal Containers by submitting a single application per job posting, that application cannot be modified to be resubmitted to a different job posting.What can the administrator do to associate an application with each job posting in the schema for the organization?
A. Create a lookup relationship on both objects to a junction object called Job Posting Applications
B. Create a master-detail relationship in the Job Postings custom object to the Applications custom object
C. Create a master-detail relationship in the Application custom object to the Job Postings custom object
D. Create a lookup relationship in the Applications custom object to the Job Postings custom object
عرض الإجابة
اجابة صحيحة: C
السؤال #17
In terms of the MVC paradigm, what are two advantages of implementing the layer of a Salesforce application using Aura Component-based development over Visualforce? Choose 2 answers
A. Self-contained and reusable units of an application (Missed)
B. Rich component ecosystem (Missed)
C. Automatic code generation
D. Server-side run-time debugging
عرض الإجابة
اجابة صحيحة: AB
السؤال #18
What are two valid options for iterating through each Account in the collection Listnamed AccountList? Choose 2 answers.
A. For (List L : AccountList) {
B. For (Account theAccount : AccountList){
C. For(AccountList){
D. For (Integer i=0; i
عرض الإجابة
اجابة صحيحة: BD
السؤال #19
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
السؤال #20
Which annotation exposes an Apex class as a RESTful web service?
A. @HttpInvocable
B. @RemoteAction
C. @RestResource (urlMapping="'/mySexrvice/*')correct
D. @AuraEnabled(cacheable=true)
عرض الإجابة
اجابة صحيحة: C
السؤال #21
A developer needs to provide a way to mass edit, update, and delete records from a list view. In which two ways can this be accomplished? Choose 2 answers
A. Create a new Visualforce page and Apex Controller for the list view that provides mass edit, update and delete functionality
B. Configure the user interface and enable both inline editing and enhanced lists
C. Download an unmanaged package from the AppExchange that provide customizable mass edit, update, and delete functionality
D. Download a managed package from the AppExchange that provides customizable Enhanced List Views and buttons
عرض الإجابة
اجابة صحيحة: AC
السؤال #22
In the Lightning Component framework, where is client-side controller logic contained?
A. Apex
B. Visualforce
C. HTML
D. JavaScript
عرض الإجابة
اجابة صحيحة: D
السؤال #23
Universal Containers wants a list button to display a Visualforce page that allows users to edit multiple records. Which Visualforce feature supports this requirement?
A. ag
B. Custom controller
C. RecordSetVar page attribute
D. Controller extension
عرض الإجابة
اجابة صحيحة: C
السؤال #24
A developer is tasked with building a custom Lightning web component to collect Contact information. The form will be shared among many different types of users in the org. There are security requirements that only certain fields should be edited and viewed by certain groups of users. What should the developer use in their Lightning Web Component to support the security requirements?
A. ui-input-failed
B. aura-input-failed
C. lightning-input-failed
D. force-input-failed
عرض الإجابة
اجابة صحيحة: D
السؤال #25
Which two statements can a developer use to throw a custom exception of type MissingFieldValueException? Choose 2 answers.
A. Throw Exception (new MissingFieldValueException());
B. Throw (MissingFieldValueException, 'Problem occurred');
C. Throw new MissingFieldValueException();
D. Throw new MissingFieldValueException ('Problem occurred');
عرض الإجابة
اجابة صحيحة: CD
السؤال #26
Which action can a developer take to reduce the execution time of the following code? Listallaccounts = [select id from account]; listallcontacts = [select id, accountid from contact]; for (account a :allaccounts){ for (contact c:allcontacts){ if(c.accountid = a.id){ //do work } } }
A. Use a mapfor allaccounts
B. Add a group by clause to the contact SOQL
C. Put the account loop inside the contact loop
D. Create an apex helper class for the SOQL
عرض الإجابة
اجابة صحيحة: A
السؤال #27
Which statement describes the execution order when triggers are associated to the same object and event?
A. Triggers are executed in the order they are modified
B. Trigger execution order cannot be guaranteed
C. Triggers are executed alphabetically by trigger name
D. Triggers are executed in the order they are created
عرض الإجابة
اجابة صحيحة: B
السؤال #28
In the code below, which type does String inherit from? String s = 'Hello World';
A. Prototype
B. Object
C. Object
D. Class
عرض الإجابة
اجابة صحيحة: B
السؤال #29
A developer needs to confirm that an Account trigger is working correctly without changing the organization's data.What would the developer do to test the Account trigger?
A. Use the Test menu on the developer Console to run all test classes for the account trigger
B. Use the New button on the Salesforce Accounts Tab to create a new Account record
C. Use the Open Execute Anonymous feature on the Developer Console to run an `insert Account' DML statement
D. Use Deply from the Force
عرض الإجابة
اجابة صحيحة: A
السؤال #30
A developer wants to retrieve the Contacts and Users with the email addres '[email?protected]'. Which SOSL statement should the developer use?
A. FIND {[email?protected]} IN Email Fields RETURNING Contact (Email), User (Email)
B. FIND {Email = '[email?protected]'} IN Contact, User
C. FIND {Email = '[email?protected]'} RETURNING Contact (Email), User (Email)
D. FIND Email IN Contact, User FOR {dev2uc
عرض الإجابة
اجابة صحيحة: A

View The Updated Salesforce Exam Questions

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

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

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

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

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