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

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

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

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

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

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

السؤال #1
An Apex method, getAccounts, that returns a List of Accounts given a search Term, is available for Lighting Web components to use. What is the correct definition of a Lighting Web component property that uses the getAccounts method?
A. @AuraEnabled(getAccounts, `$searchTerm') accountList;
B. @wire(getAccounts, `$searchTerm') accountList;
C. @AuraEnabled(getAccounts, {searchTerm: `$searchTerm'}) accountList;
D. @wire(getAccounts, {searchTerm: `$searchTerm'}) accountList;
عرض الإجابة
اجابة صحيحة: D
السؤال #2
How can a developer check the test coverage of active Process Builder and Flows deploying them in a Changing Set?
A. Use the Flow properties page
B. Use the code Coverage Setup page
C. Use the Apex testresult class
D. Use SOQL and the Tooling API
عرض الإجابة
اجابة صحيحة: D
السؤال #3
Uniersal Containers (UC) is developing a process for their sales teams that requires all sales reps to go through a set of scripted steps with each new customer they create.In the first steps of collecting information, UC's ERP system must be checked via as a REST endpoint to see if the customerexists. If the customer exists, the data must be presented to the sales rep in Salesforce.Which two should a developer implement to satisfy the requirements? Choose2 answer
A. Flow
B. Future method
C. Trigger
D. Invocable method
عرض الإجابة
اجابة صحيحة: BD
السؤال #4
A developer in a Salesforce org with 100 Accounts executes the following code using the Developer console:Account myAccount = new Account(Name = 'MyAccount');Insert myAccount;For (Integer x = 0; x < 150; x++) {Account newAccount = new Account (Name='MyAccount' + x);try {Insert newAccount;} catch (Exception ex) {System.debug (ex) ;}}insert new Account (Name='myAccount');How many accounts are in the org after this code is run?
A. 101
B. 100
C. 102
D. 252
عرض الإجابة
اجابة صحيحة: B
السؤال #5
A Salesforce Administrator used Flow Builder to create a flow named `'accountOnboarding''. The flow must be used inside an Aura component. Which tag should a developer use to display the flow in the component?
A. Lightning-flow
B. Aura:flow
C. Lightning:flow
D. Aura:flow
عرض الإجابة
اجابة صحيحة: C
السؤال #6
A developer creates an Apex class that includes private methods. What can the developer do to ensure that the private methods can be accessed by the test class?
A. Add the TestVisible attribute to the Apex class
B. Add the SeeAllData attribute to the test methods
C. Add the TestVisible attribute to the apex methods
D. Add the SeeAllData attribute to the test class
عرض الإجابة
اجابة صحيحة: C
السؤال #7
A newly hired developer discovers that there are multiple triggers on the case object.What should the developer consider when working with triggers?
A. Developers must dictate the order of trigger execution
B. Trigger execution order is based on creation date and time
C. Unit tests must specify the trigger being tested
D. Trigger execution order is not guaranteed for the same sObject
عرض الإجابة
اجابة صحيحة: D
السؤال #8
Which salesforce org has a complete duplicate copy of the production org including data and configuration?
A. Developer Pro Sandbox
B. Partial Copy Sandbox
C. Production
D. Full Sandbox
عرض الإجابة
اجابة صحيحة: D
السؤال #9
niversal Containers (UC) processes orders in Salesforce in a custom object, Crder_c. They also allow sales reps to upload CSV files with 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 Craer__c is first set to "Placed', the order information must be sent to a REST endpoint in the ERP system that can process ne order at a time.What should the developer implement to accomplish this?
A. Callout from an  rare method called from a trigger
B. Callout from a Sarchabie class called from a scheduled job
C. Flow with 2 callout from an invocable method
D. Callout from a queseatie class called from a trigger
عرض الإجابة
اجابة صحيحة: A
السؤال #10
A company has been adding data to Salesforce and has not done a good Job of limiting the creation of duplicate Lead records. The developer is considering writing an Apex process to identify duplicates and merge the records together. Which two statements are valid considerations when using merged? Choose 2 answers
A. The field values on the master record are overwritten by the records being merged
B. Merge is supported with accounts, contacts, cases, and leads
C. External ID fields can be used with the merge method
D. The merge method allows up to three records, including the master and two additional records with the same sObject type, to be merged into the master record
عرض الإجابة
اجابة صحيحة: BD
السؤال #11
Assuming that `name; is a String obtained by antag on a Visualforce page. Which two SOQL queries performed are safe from SOQL injections? Choose 2 answers
A. String query = 'SELECT Id FROM Account WHERE Name LIKE \''%' + name
B. String query = 'SELECT Id FROM Account WHERE Name LIKE \''%' + String
C. String query = 'SELECT Id FROM Account WHERE Name LIKE \''%' + name + '%\''; Listresults = Database
D. String query = '%' + name + '%';Listresults = [SELECT Id FROM Account WHERE Name LIKE :query];
عرض الإجابة
اجابة صحيحة: BD
السؤال #12
Which two statements true about Getter and Setter methods as they relate to Visualforce? Choose 2 answers
A. Getter methods can pass a value from a controller to a page
B. There is no guarantee for the order in which Getter or Setter methods are executed
C. Setter methods always have to be declared global
D. Setter methods can pass a value from a controller to a page
عرض الإجابة
اجابة صحيحة: AD
السؤال #13
A developer must provide custom user interfaces when users edit a Contact in either Salesforce Classic or Lightning Experience.What should the developer use to override the Contact's Edit button and provide this functionality?
A. A Visualforce page in Salesforce Classic and a Lightning component in Lightning Experience
B. A Lightning component in 5alesforce Classic and a Lightning component in lightning Experience
C. A Visualforce page in Salesforce Classic and a Lightning page in Lightning Experience
D. A Lightning page in Salesforce Classic and a Visualforce page in Lightning Experience
عرض الإجابة
اجابة صحيحة: A
السؤال #14
Refer to the following code that runs in an Execute Anonymous block:
A. In an environment where the full result set is returned, what is a possible outcome of this code?
B. The total number of records processed as a result of DML statements will be exceeded
C. The total number of records processed as a result of DML statements will be exceeded
D. The transaction will succeed and the first ten thousand records will be committed to the database
E. The total number of DML statements will be exceeded
عرض الإجابة
اجابة صحيحة: B
السؤال #15
A team of many developers work in their own individual orgs that have the same configuration at the production org. Which type of org is best suited for this scenario?
A. Developer Sandbox
B. Developer Edition
C. Full Sandbox
D. Partner Developer Edition
عرض الإجابة
اجابة صحيحة: B
السؤال #16
Which two statements are true about Getter and Setter methods? (Choose two.)
A. Setter methods always have to be declared global
B. Setter methods are required to pass a value from a page to a controller
C. There is no guarantee for the order in which Getter or Setter methods are executed
D. Getter methods can pass a value from a controller to a page
عرض الإجابة
اجابة صحيحة: BD
السؤال #17
A developer created a new trigger that inserts a Task when a new Lead is created. After deploying to production, an outside integration chat reads task records is periodically reporting errors. Which change should the developer make to ensure the integration is not affected with minimal impact to business logic?
A. Deactivate the trigger before the integration runs
B. Use a try-catch block after the insert statement
C. Remove the Apex class from the integration user's profile
D. Use the Database method with all or None set to false
عرض الإجابة
اجابة صحيحة: C
السؤال #18
Universal Containers has developed custom Apex code and Lightning Components in a Sandbox environment. They need to deploy the code and associated configurations to the Production environment.What is the recommended process for deploying the code and configurations to Production?
A. Use a change set to deploy the Apex code and Lightning Components
B. Use the Force
C. Use the Ant Migration Tool to deploy the Apex code and Lightning Components
D. Use Salesforce CLI to deploy the Apex code and Lightning Components
عرض الإجابة
اجابة صحيحة: D
السؤال #19
A developer must build an application that tracks which Accounts have purchased specific pieces of equipment that are represented as Products. Each Account could purchase many pieces of equipment.How should the developer track that an Account has purchased a piece of equipment?
A. Use the Asset object
B. Use a Master-Detail on Product to Account
C. Use a Custom object
D. Use a Lookup on Account to Product
عرض الإجابة
اجابة صحيحة: B
السؤال #20
Universal Containers has a Visualforce page that displays a table of every Container_c. being ....... Is falling with a view state limit because some of the customers rent over 10,000 containers. What should a developer change about the Visualforce page to help with the page load errors?
A. Use Lazy loading and a transient List variable
B. Use JavaScript remoting with SOQL Offset
C. Implement pagination with an OffsetController
D. Implement pagination with a StandardSetController,
عرض الإجابة
اجابة صحيحة: D
السؤال #21
A developer has two custom controller extensions where each has a save() method.Which save() method will be called for the following Visualforce page?
A. ExtensionA save()
B. ExtensionB save()
C. standard controller save()
D. Runtime error will be generated
عرض الإجابة
اجابة صحيحة: D
السؤال #22
A developer has the following code:try {List nameList;Account a;String s = a.Name;nameList.add(s);} catch (ListException le ) {System.debug(' List Exception ');} catch (NullPointerException npe) {System.debug('NullPointer Exception ');} catch (Exception e) {System.debug(' Generic Exception ');}What message will be logged?
A. List Exception
B. NullPointer Exception
C. Generic Exception
D. No message is logged
عرض الإجابة
اجابة صحيحة: B
السؤال #23
What does the Lightning Component framework provide to developers?
A. Support for Classic and Lightning UIs
B. Templates to create custom components
C. Extended governor limits for applications
D. Prebuilt components that can be reused
عرض الإجابة
اجابة صحيحة: D
السؤال #24
What should a developer use to obtain the Id and Name of all the Leads. Accounts, and Contacts that hove the company name "Universal Containers"?
A. FIND 'Universal Containers' IN Name Fields RETURNING leadjid, name), accounted, name), contacted, name)
B. FIND Universal Containers' IN CompanyName Fietds RETURNING lead{ld
C. SELECT lead(id, name)
D. SELECT Lead
عرض الإجابة
اجابة صحيحة: A
السؤال #25
Which statement would a developer use when creating test data for products and pricebooks?
A. Id pricebookId = Test
B. Pricebook pb = new Pricebook();
C. IsTest(SeeAllData = false);
D. List objList = Test
عرض الإجابة
اجابة صحيحة: A
السؤال #26
In Lightning component framework, which resource can be used to fire events? Choose 2 answers.
A. Third-party Javascript code
B. Javascript controller actions
C. Visualforce controller actions
D. Third-party web service code
عرض الإجابة
اجابة صحيحة: AB
السؤال #27
Which two statements are true about using the @testSetup annotation in an Apex test class? (Choose two.)
A. Records created in the test setup method cannot be updated in individual test methods
B. Qo The @testSetup annotation is not supported when the GisTest(SeeAllData=True) annotation is used
C. Test data is inserted once for all test methods in a class
D. A method defined with the @testSetup annotation executes once for each test method in the test class and counts towards system limits
عرض الإجابة
اجابة صحيحة: BD
السؤال #28
A developer created a custom order management app that uses an Apex class. The order is represented by an Order object and an Orderltem object that has a master-detail relationship to Order. During order processing, an order may be split into multiple orders.What should a developer do to allow their code to move some existing Order ltem records to a new Order record?
A. Change the master-detail relationship to an external lookup relationship
B. Add without sharing to the Apex class declaration
C. Create a junction object between Orderltem and Order
D. Select the Allow reparenting option on the master-detail relationship
عرض الإجابة
اجابة صحيحة: D
السؤال #29
Which user can edit a record after it has been locked for approval? (Choose 2)
A. Any user with a higher role in the hierarchy
B. A user who is assigned as the current approver
C. Any user who approved the record previously
D. An administrator
عرض الإجابة
اجابة صحيحة: BD
السؤال #30
A developer Is Integrating with a legacy on-premise SQL database.What should the developer use to ensure the data being Integrated is matched to the right records in Salesforce?
A. Lookup field
B. External ID field
C. Formula field
D. External Object
عرض الإجابة
اجابة صحيحة: B

View The Updated Salesforce Exam Questions

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

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

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

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

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