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

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

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

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

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

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

السؤال #1
What is the result of the following code?
A. The record will not be created and a exception will be thrown
B. The record will be created and a message will be in the debug log
C. The record will not be created and no error will be reported
D. The record will be created and no error will be reported
عرض الإجابة
اجابة صحيحة: C
السؤال #2
Which set of roll-up types are available when creating a roll-up summary field?
A. COUNT, SUM, MIN, MAX
B. AVERAGE, SUM, MIN, MAX
C. SUM, MIN, MAX
D. AVRAGE, COUNT, SUM, MIN, MAX
عرض الإجابة
اجابة صحيحة: A
السؤال #3
A developer is asked to explore if this automation can be implemented without writing any Apex code. Which statement is true regarding this automation request?
A. This approval step cannot be automated and must be done manually
B. The developer can use Einstein Next Best Actions
C. The developer can use a record
D. The developer can use record triggered flow with Actions
عرض الإجابة
اجابة صحيحة: C
السؤال #4
What is the minimum log level needed to see user-generated debug statements?
A. DEBUG
B. FINE
C. INFO
D. WARN
عرض الإجابة
اجابة صحيحة: A
السؤال #5
Which three declarative fields are correctly mapped to variable types in Apex? (Choose three.)
A. Number maps to Decimal
B. Number maps to Integer
C. TextArea maps to List of type String
D. Date/Time maps to Dateline
E. Checkbox maps to Boolean
عرض الإجابة
اجابة صحيحة: ADE
السؤال #6
An org has a single account named `NoContacts' that has no related contacts. Given the query:Listaccounts = [Select ID, (Select ID, Name from Contacts) from Account where Name=`NoContacts'];What is the result of running this Apex?
A. accounts[0]
B. accounts[0]
C. accounts[0]
D. A QueryException is thrown
عرض الإجابة
اجابة صحيحة: B
السؤال #7
When the value of a field of an account record is updated, which method will update the value of a custom field opportunity? Choose 2 answers.
A. A process builder on the Account object
B. An Apex trigger on the Account object
C. A cross-object formula field on the Account object
D. A workflow rule on the Account object
عرض الإجابة
اجابة صحيحة: AB
السؤال #8
Which two statements are accurate regarding Apex classes and interfaces? Choose 2 answers
A. Classes are final by default
B. Inner classes are public by default
C. Interface methods are public by default
D. A top-level class can only have one inner class level
عرض الإجابة
اجابة صحيحة: CD
السؤال #9
A developer wants to display all of the available record types for a Case object. The developer also wants to display the picklist values for the Case.Status field. The Case object and the Case.Status field are on a custom Visualforce page. Which action can the developer perform to get the record types and picklist values in the controller? (Choose 2)
A. Use Schema
B. Use Schema
C. Use SOQL to query Case records in the org to get all the RecordType values available for Case
D. Use SOQL to query case records in the org to get all values for the Status picklist field
عرض الإجابة
اجابة صحيحة: AB
السؤال #10
What is a valid source and destination pair that can send or receive change sets? (Choose 2)
A. Developer Edition to Sandbox
B. Sandbox to Production
C. Sandbox to Sandbox
D. Developer Edition to Production
عرض الإجابة
اجابة صحيحة: BC
السؤال #11
Which code statement includes an Apex method named update accounts in the Class AccountCont rolles for use in a Lightning web component?
A. import updateAccounts from 'AccountController';
B. import updateAccounts from '@salesforce/apex/AccountController';
C. import updateAccounts from 'AccountController
D. import updateAccounts from '@salesforce/apex/AccountController
عرض الإجابة
اجابة صحيحة: D
السؤال #12
A developer wants to invoke an outbound message when a record meets a specific criteria. Which three features satisfy this use case? (Choose three.)
A. Process builder can be used to check the record criteria and send an outbound message with Apex Code
B. Process builder can be used to check the record criteria and send an outbound message without Apex Code
C. Approval Process has the capability to check the record criteria and send an outbound message without Apex Code
D. Workflows can be used to check the record criteria and send an outbound message
E. Visual Workflow can be used to check the record criteria and send an outbound message without Apex Code
عرض الإجابة
اجابة صحيحة: CDE
السؤال #13
A developer wrote a unit test to confirm that a custom exception works properly in a custom controller, but the test failed due to an exception being thrown. Which step should the developer take to resolve the issue and properly test the exception?
A. Use try/catch within the unit test to catch the exception
B. Use the finally bloc within the unit test to populate the exception
C. Use the database methods with all or none set to FALSE
D. Use Test
عرض الإجابة
اجابة صحيحة: A
السؤال #14
What are two correct examples of the model in the salesforce MVC architecture? Choose 2 answers.
A. Custom field on the custom wizard_c object
B. Standard lightning component
C. Workflow rule on the contact object
D. Standard account lookup on the contract object
عرض الإجابة
اجابة صحيحة: BC
السؤال #15
What are two valid options for iterating through each Account in the collection Listnamed AccountList? (Choose two.)
A. for (Account theAccount : AccountList) {
B. for(AccountList) {
C. for (List L : AccountList) {
D. for (Integer i=0; i < AccountList
عرض الإجابة
اجابة صحيحة: AD
السؤال #16
What are two characteristics related to formulas? Choose 2 answers.
A. Formula can reference themselves
B. Formulas are calculated at runtime and are not stored in the database
C. Formulas can reference values in related objects
D. Fields that are used in a formula field can be deleted or edited without the formula
عرض الإجابة
اجابة صحيحة: BC
السؤال #17
Given the following Apex statement:Account myAccount = [SELECT Id, Name FROM Account];What occurs when more than one Account is returned by the SOQL query?
A. The variable, myAccount, is automatically cast to the List data type
B. The first Account returned is assigned to myAccount
C. The query fails and an error is written to the debug log
D. An unhandled exception is thrown and the code terminates
عرض الإجابة
اجابة صحيحة: D
السؤال #18
A developer has a single custom controller class that works with a Visualforce Wizard to support creating and editing multiple sObjects. The wizard accepts data from user inputs across multiple Visualforce pages and from a parameter on the initial URL.Which three statements are useful inside the unit test to effectively test the custom controller? (Choose three.)
A. Insert pageRef;
B. String nextPage = controller
C. ApexPages
D. public ExtendedController(ApexPages
E. Test
عرض الإجابة
اجابة صحيحة: BCE
السؤال #19
What are two use cases for executing Anonymous Apex code? Choose 2 answers
A. To delete 15,000 inactive Accounts In a single transaction after a deployment
B. To schedule an Apex class to run periodically
C. To run a batch Apex class to update all Contacts
D. To add unit test code coverage to an org
عرض الإجابة
اجابة صحيحة: BC
السؤال #20
Which three statements are true regarding custom exceptions in Apex? (Choose three.)
A. A custom exception class must extend the system Exception class
B. A custom exception class can implement one or many interfaces
C. A custom exception class cannot contain member variables or methods
D. A custom exception class name must end with "Exception"
E. A custom exception class can extend other classes besides the Exception class
عرض الإجابة
اجابة صحيحة: BDE
السؤال #21
A Platform Developer needs to write an Apex method that will only perform an action if a record is assigned to a specific Record Type. Which two options allow the developer to dynamically determine the ID of the required Record Type by its name? (Choose two.)
A. Make an outbound web services call to the SOAP API
B. Hardcode the ID as a constant in an Apex class
C. Use the getRecordTypeInfosByName() method in the DescribeSObjectResult class
D. Execute a SOQL query on the RecordType object
عرض الإجابة
اجابة صحيحة: CD
السؤال #22
How should a developer prevent a recursive trigger?
A. Use a "one trigger per object" pattern
B. Use a static Boolean variable
C. Use a trigger handler
D. Use a private Boolean variable
عرض الإجابة
اجابة صحيحة: D
السؤال #23
A developer must create an Apex class, contactcontroller, that a Lightning component can use to search for Contact records. User of the Lightning component should only be able to search Contact records to which they have access.Which two will restrict the records correctly?
A. public class ContactController
B. public with sharing class ContactController
C. public without sharing class ContactController
D. public inherited sharing class ContactController
عرض الإجابة
اجابة صحيحة: BD
السؤال #24
A developer identifies the following triggers on the Expense_c object:1. DeleteExpense, 2. applyDefaultstoexpense 3. validateexpenseupdate;The triggers process before delete, before insert, and before update events respectively. Which two techniques should the developer implement to ensure trigger best practice are followed?
A. Unify the before insert and before update triggers and use Process Builder for the delete action
B. Maintain all three triggers on the Expense_c object, but move the Apex logic out for the trigger definition
C. Create helper classes to execute the appropriate logic when a record is saved
D. Unify all three triggers in a single trigger on the Expense_c object that includes all events
عرض الإجابة
اجابة صحيحة: CD
السؤال #25
A Visualforce page loads slowly due to the large amount of data it displays. Which strategy can a developer use to improve the performance?
A. use lazy loading to load the data on demand, instead of in the controller's constructor
B. use an in the page to load all of the data asynchronously
C. use Javascript to move data processing to the browser instead of the controller
D. Use the transient keyword for the List variables used in the custom controller
عرض الإجابة
اجابة صحيحة: A
السؤال #26
A developer encounters APEX heap limit errors in a trigger. Which two methods should the developer use to avoid this error? (Choose two.)
A. Use the transient keyword when declaring variables
B. Query and store fields from the related object in a collection when updating related objects
C. Remove or set collections to null after use
D. Use SOQL for loops instead of assigning large queries results to a single collection and looping through the collection
عرض الإجابة
اجابة صحيحة: AD
السؤال #27
Which resource can be included in a Lightning Component bundle? Choose 2 answers
A. Apex class
B. Adobe Flash
C. JavaScript
D. Documentation
عرض الإجابة
اجابة صحيحة: CD
السؤال #28
A Visualforce page has a standard controller for an object that has a lookup relationship to a parent object. How can a developer display data from the parent record on the page?
A. By adding a second standard controller to the page for the parent record
B. By using a roll-up formula field on the child record to include data from the parent record
C. By using SOQL on the Visualforce page to query for data from the parent record
D. By using merge field syntax to retrieve data from the parent record
عرض الإجابة
اجابة صحيحة: D
السؤال #29
Which three operations affect the number of times a trigger can fire? Choose 3 answers
A. Process Flows
B. Workflow Rules
C. Criteria-based Sharing calculations
D. Email messages
E. Roll-Up Summary fields
عرض الإجابة
اجابة صحيحة: ABE
السؤال #30
What is the result of the following code snippet?
A. 201 Accounts are inserted
B. 200 Accounts are inserted
C. 0 Accounts are inserted
D. 1 Account is inserted
عرض الإجابة
اجابة صحيحة: C

View The Updated Salesforce Exam Questions

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

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

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

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

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