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

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

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

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

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

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

السؤال #1
Which statement is true regarding execution order when triggers are associated to the same object and event?
A. Trigger execution order cannot be guaranteed
B. executed In the order they are modified
C. Triggers are executed alphabetically by trigger name
D. Triggers are executed in the order they are created
عرض الإجابة
اجابة صحيحة: A
السؤال #2
A developer has an Apex controller for a Visualforce page that takes an ID as a URL parameter.How should the developer prevent a cross site scripting vulnerability?
A. ApexPages
B. String
C. String
D. ApexPages
عرض الإجابة
اجابة صحيحة: D
السؤال #3
An Apex method, getAccounts, that returns a List of Accounts given a searchTerm, is available for Lightning Web components to use. What is the correct definition of a Lightning Web component property that uses the getAccounts method?
A. Option A
B. Option B
C. Option C
D. Option D
عرض الإجابة
اجابة صحيحة: A
السؤال #4
A developer has requirement to write Apex code to update a large number of account records on a nightly basis. The system administrator needs to be able to schedule the class to run after business hours on an as-needed basis. Which class definition should be used to successfully implement this requirement?
A. Global inherited sharing class ProcessAccountProcessor implements Database
B. Global inherited sharing class ProcessAccount Process implements Queueable
C. Global inherited sharing class ProcessAccountProcess Implements Queueable
D. Gloabal inherited sharing class processAccount Processor implements Database>BachableSchedulable
عرض الإجابة
اجابة صحيحة: C
السؤال #5
Universal Containers wants to assess the advantages of declarative development versus programmatic customization for specific use cases in its Salesforce implementation. What are two advantages of declarative development over programmatic customization? (Choose two.)
A. Declarative development has higher design limits and query limits
B. Declarative development does not require Apex test classes
C. Declarative development does not require maintenance
D. Declarative development can be updated in production using the Setup UI
عرض الإجابة
اجابة صحيحة: BD
السؤال #6
A developer Is asked to create a Visualforce page that lists the contacts owned by the current user. This component will be embedded In a Lightning page. Without writing unnecessary code, which controller should be used for this purpose?
A. Standard list controller
B. Standard controller
C. Lightning controller
D. Custom controller
عرض الإجابة
اجابة صحيحة: B
السؤال #7
Which two process automations can be used on their own to send Salesforce Outbound Message? Choose 2 answers
A. Process Builder
B. Workflow Rule
C. Flow Builder
D. Strategy Builder
عرض الإجابة
اجابة صحيحة: BC
السؤال #8
A developer writes the following code:What is the result of the debug statement?
A. 1, 100
B. 1, 150
C. 2, 150
D. 2, 200
عرض الإجابة
اجابة صحيحة: C
السؤال #9
A developer Edition org has five existing accounts. A developer wants to add 10 more accounts for ...The following code is executed in the Developer Console using the Executor Anonymous window:Account myAccount = new Account (Name = "MyAccount"); insert myAccount; Integer x = 1; ListnetAccounts = new List{}; do ( Account acct = new Account (Name = 'New Account " + x++); newAccounts.add(acct); ) while (x < 10);How many total accounts will be in the org after this code is executed?
A. 5
B. 6
C. 10
D.
E. 15
عرض الإجابة
اجابة صحيحة: C
السؤال #10
Which code displays the contents of a Visualforce page as a PDF? A. B. C. D. https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_output_pdf_renderas.htm
Which code displays the contents of a Visualforce page as a PDF? A. B
عرض الإجابة
اجابة صحيحة: B
السؤال #11
How many accounts will be inserted by the following block of code? for(Integer i = 0 ; i < 500; i++) { Account a = new Account(Name='New Account ' + i); insert a; }87. Boolean odk; Integer x; if(abok=false;integer=x;){ X=1; }elseif(abok=true;integer=x;){ X=2; }elseif(abok!=null;integer=x;){ X=3; )elseif{ X=4;}
A. X=4
B. X=8
C. X=9
D. X=10
عرض الإجابة
اجابة صحيحة: A
السؤال #12
A user selects a value from a multi-select picklist. How is this selected value represented in Apex?
A. As a string ending with a comma
B. As a string
C. As a list< String > with one element
D. As a set< string > with one element
عرض الإجابة
اجابة صحيحة: B
السؤال #13
The Sales Management team hires a new intern. The intern is not allowed to view Opportunities, but needs to see the Most Recent Closed Date of all child Opportunities when viewing an Account record. What would a developer do to meet this requirement?
A. Create a trigger on the Account object that queries the Close Date of the most recent Opportunities
B. Create a Workflow rule on the Opportunity object that updates a field on the parent Account
C. Create a formula field on the Account object that performs a MAX on the Opportunity Close Date field
D. Create a roll-up summary field on the Account object that performs a MAX on the Opportunity Close Date field
عرض الإجابة
اجابة صحيحة: D
السؤال #14
What are two ways for a developer to execute tests in an org?
A. Tooling API
B. Developer console
C. Bulk API
D. Matadata API
عرض الإجابة
اجابة صحيحة: AB
السؤال #15
What declarative method helps ensure quality data? Choose 3 answers
A. Page layouts
B. Lookup filters
C. Exception handling
D. Workflow alerts
E. Validation rules
عرض الإجابة
اجابة صحيحة: ABE
السؤال #16
A recursive transaction is initiated by a DML statement creating records for these two objects:1. Accounts 2. ContactsThe Account trigger hits a stack depth of 16.Which statement is true regarding the outcome of the transaction?
A. The transaction fails and all the changes are rolled back
B. The transaction succeeds as long as the Contact trigger stack depth is less than 16
C. The transaction fails only if the Contact trigger stack depth is greater or equal to 16
D. The transaction succeeds and all changes are committed to the database
عرض الإجابة
اجابة صحيحة: D
السؤال #17
Where can the custom roll-up summary fields be created using Standard Object relationships (Choose 3)
A. On Opportunity using Opportunity Product records
B. On Account using Case records
C. On Quote using Order records
D. On Campaign using Campaign Member records
E. On Account using Opportunity records
عرض الإجابة
اجابة صحيحة: ADE
السؤال #18
What is accurate statement about with sharing keyword? Choose 2 answers
A. Either inner or outer classes can be declared as with sharing, but not both
B. Both inner and outer classes can be declared as with sharing
C. Inner classes do not inherit the sharing settings from the container class
D. Inner classes inherit the sharing settings from the container class
عرض الإجابة
اجابة صحيحة: BC
السؤال #19
What should a developer use to fix a Lightning web component bug in a sandbox?
A. Developer Console
B. Force
C. Execute Anonumous
D. VS Code
عرض الإجابة
اجابة صحيحة: D
السؤال #20
What will be the output in the debug log in the event of a QueryExeption during a call to the @query method in the following Example?
A. Querying Accounts
B. Querying Accounts
C. Querying Accounts
D. Querying Accounts
عرض الإجابة
اجابة صحيحة: C
السؤال #21
Which two are phases in the Salesforce Application Event propagation framework? (Choose two.)
A. Bubble
B. Default
C. Control
D. Emit
عرض الإجابة
اجابة صحيحة: AB
السؤال #22
Which two statements are valid regarding Apex classes and interfaces? (Choose two.)
A. Classes are final by default
B. Interface methods are public by default
C. Inner classes are private by default
D. A class can only have one inner class level
عرض الإجابة
اجابة صحيحة: BD
السؤال #23
A developer has a block of code that omits any statements that indicate whether the code block should execute with or without sharing. What will automatically obey the organization-wide defaults and sharing settings for the user who executes the code in the Salesforce organization?
A. Apex Triggers
B. HTTP Callouts
C. Apex Controllers
D. Anonymous Blocks
عرض الإجابة
اجابة صحيحة: D
السؤال #24
Which Lightning code segment should be written to declare dependencies on a Lightning component, c:accountList, that is used in a Visualforce page?
A. Option A
B. Option B
C. Option C
D. Option D
عرض الإجابة
اجابة صحيحة: A
السؤال #25
When a user edits the Postal Code on an Account, a custom Account text field named ''Timezone'' must be updated based on the values in a postalCodeToTimezone_c custom object. What should be built to implement this feature?
A. Account custom trigger
B. Account approval process
C. Account assignment rule
D. Account workflow rule
عرض الإجابة
اجابة صحيحة: A
السؤال #26
What is an important consideration when developing in a multi-tenant environment?
A. Governor limits prevent tenants from impacting performance in multiple orgs on the same instance
B. Unique domain names take the place of namespaces for code developed for multiple orgs on multiple instances
C. Polyglot persistence provides support for a global, multilingual user base in multiple orgs on multiple instances
D. Org-wide data security determines whether other tenants can see data in multiple orgs on the same instance
عرض الإجابة
اجابة صحيحة: A
السؤال #27
Universal Hiring is using Salesforce to capture job applications. A salesforce administrator created two custom objects; Job c acting as the master object, Job application._: acting as the detail. Within the Job_c object, a custom multi-select picklist, Preferred Locations Op, contains a list of approved states for the position. Each Job-_Application e record relates to a Contact within the system through a master-detail relationship. Recruiters have requested the ability to view whether the Contact's Maili
A. Record-triggered flow
B. Process Builder
C. Formula field
D. Apex trigger
عرض الإجابة
اجابة صحيحة: C
السؤال #28
What are three capabilities of thetag when loading JavaScript resources in Aura components? Choose 3 answers
A. Loading files from Documents
B. One-time loading for duplicate scripts
C. Specifying loading order
D. Loading scripts In parallel
E. Loading externally hosted scripts
عرض الإجابة
اجابة صحيحة: BCD
السؤال #29
Which two are true regarding a Dyno? Choose 2 answers
A. Is a light weight VM used to run code on the Heroku Platform
B. Has the ability to sleep as a standard and performance Dyno
C. Is a lightweight Linux container used in a collection to run Heroku applications
D. Has Ephemeral filesystems and is rebooted every 24 hours
عرض الإجابة
اجابة صحيحة: CD
السؤال #30
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 done to ensure that a user populates the Lead Source field prior to converting a Lead?
A. Use a formula field
B. Use a validation rule
C. Use Lead Conversation field mapping
D. Create an after trigger on Lead
عرض الإجابة
اجابة صحيحة: B

View The Updated Salesforce Exam Questions

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

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

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

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

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