[Apr-2024] DEX-450 Exam Dumps, DEX-450 Practice Test Questions [Q100-Q117]

Share

[Apr-2024] DEX-450 Exam Dumps, DEX-450 Practice Test Questions

Attested DEX-450 Dumps PDF Resource [2024]

NEW QUESTION # 100
A developer needs to apply the look and feel of lightning experience to a number of applications built using a custom third-party javascript framework and rendered in visualforce pages which option achieves this?

  • A. Replace the third-party javascript library with native visualforce tags
  • B. Configure the user interface options in the setup menu to enable legacy mode for visualforce
  • C. Set the attribute enablelightning to "true" in the definition
  • D. Incorporate salesforce lightning design system css style sheets into the javascript applications

Answer: D


NEW QUESTION # 101
code below deserializes input into a list of Accounts.

Which code modification should be made to insert the Accounts so that field-level security is respected?

  • A. 05: SobjectAcessDecision sd= Security,stripINaccessible(AccessType,CREATABLE,
  • B. 05: If (SobjectType.Account, isCreatable())
  • C. 05: Accts = database.stripinaccesible (accts, Database. CREATEABLE);
  • D. 01: Public with sharing class AcctCreator

Answer: D


NEW QUESTION # 102
A developer created a Lightning component to display a short text summary for an object and wants to use it with multiple Apex classes.
How should the developer design the Apex classes?

  • A. Extend each class from the same base class that has a method getTextSummary() that returns the summary.
  • B. Have each class implement an interface that defines method getTextSummary() that returns the summary.
  • C. Have each class define method getTextSummary() that returns the summary.
  • D. Have each class define method getObject() that returns the sObject that is controlled by the Apex class.

Answer: B


NEW QUESTION # 103
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 @invocableMethod annotation.
  • B. The method must use the @AuraEnabled annotation.
  • C. The method must use the @Future annotation.
  • D. The method must be defined as static.
  • E. The method must be defined as public.

Answer: C,D,E


NEW QUESTION # 104
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.
What is the recommended tool a developer should use to meet the business requirement?

  • A. Record-triggered flow
  • B. Formula field
  • C. Apex trigger
  • D. Process Builder

Answer: B


NEW QUESTION # 105
Cloud Kicks Fitness, an ISV Salesforce partner, is developing a managed package application. One of the application modules allows the user to calculate body fat using the apex class, Bodyfat, and its method, calculateBodyfat(). The product owner wants to ensure this method is accessible by the consumer of the application when developing customizer outside the ISV's package namespace. Which approach should a developer take to ensure calculateBodyFat() is accessible outside the package namespace?

  • A. Declare the class as public and use the public access modifier on the method.
  • B. Declare the class and method using the public access modifier.
  • C. Declare the class and method using the global access modifier.
  • D. Declare the class as public and use the global access modifier on the method.

Answer: C


NEW QUESTION # 106
When importing and exporting data into Salesforce, which two statements are true?
Choose 2 answers

  • A. Bulk API can be used to bypass the storage limits when importing large data volumes in development environments.
  • B. Bulk API can be used to import large data volumes in development environments without bypassing the storage limits.
  • C. Data import wizard is a client application provided by Salesforce.
  • D. Developer and Developer Pro sandboxes have different storage limits.

Answer: C,D


NEW QUESTION # 107
Manage package can be created in which type of org?

  • A. Unlimited edition
  • B. Developer Edition
  • C. Developer sandbox
  • D. Partial copy sandbox

Answer: B


NEW QUESTION # 108
Which two number expression evaluate correctly? Choose 2 answers

  • A. Integer I = 3.14159;
  • B. Decimal D = 3.14159;
  • C. Long I = 3.14159;
  • D. Double D =3.14159;

Answer: B,D


NEW QUESTION # 109
When a user edits the Postal Code on an Account, a custom Account text field named ''Timezone'' must be updated based on the values another custom object object called.
What is the optimal way to Implement this feature?

  • A. Build an account assignment rule.
  • B. Create an account approval process.
  • C. Build a flow with flow Builder.
  • D. Create a formula field.

Answer: C


NEW QUESTION # 110
Developers at Universal Containers (UC) use version control to share their code changes, but they notice that when they deploy their code to different environments they often have failures. They decide to set up Continuous Integration (CI).
What should the UC development team use to automatically run tests as part of their CI process?

  • A. Developer Console
  • B. Visual Studio Code
  • C. Salesforce CLI
  • D. Force.com Toolkit

Answer: D


NEW QUESTION # 111
In the following example, which sharing context will myMethod execute when it is invoked?

  • A. Sharing rules will not be enforced for the running user.
  • B. Sharing rules will be inherited from the calling context.
  • C. Sharing rules Ml be enforced for the running user.
  • D. Sharing rules Ail be enforced by the instantiating class

Answer: B


NEW QUESTION # 112
Which three statements are true regarding trace flags? (Choose three.)

  • A. If active trace flags are not set, Apex tests execute with default logging levels.
  • B. Trace flags can be set in the Developer Console, Setup, or using the Tooling API.
  • C. Logging levels override trace flags.
  • D. Setting trace flags automatically cause debug logs to be generated.
  • E. Trace flags override logging levels.

Answer: A,B,E


NEW QUESTION # 113
A developer writes a single trigger on the Account object on the after insert and after update events. A workflow rule modifies a field every time an Account is created or updated.
How many times will the trigger fire if a new Account is inserted, assuming no other automation logic is implemented on the Account?

  • A. 0
  • B. 1
  • C. 2
  • D. 3

Answer: B


NEW QUESTION # 114
Which two condition cause workflow rules to fire? Choose 2 answers

  • A. Converting leads to person account
  • B. Updating record using bulk API
  • C. Changing territory assignments of accounts and opportunities
  • D. An Apex batch process that changes field values

Answer: B,D


NEW QUESTION # 115
A developer must write an Apex method that will be called from a Lightning component. The method may delete an account stored in the accountRec variable. Which method should a developer use to ensure only users that should be able to delete Accounts can succesfully perform deletions?

  • A. Account.isDelketable()
  • B. AccountRec.isdeletable()
  • C. Schema.sObjectType.Account.isDeletable()
  • D. AccountRec.sObjectType.isDeleteable()

Answer: C


NEW QUESTION # 116
Which two types of process automation can be used to calculate the shipping cost for an Order when the Order is placed and apply a percentage of the shipping cost of some of the related Order Products?
Choose 2 answers

  • A. Approval Process
  • B. Workflow Rule
  • C. Flow Builder
  • D. Process Builder

Answer: C


NEW QUESTION # 117
......

Latest DEX-450 Actual Free Exam Questions Updated 239 Questions: https://www.actual4labs.com/Salesforce/DEX-450-actual-exam-dumps.html

Free DEX-450 Exam Braindumps certification guide Q&A: https://drive.google.com/open?id=1ofsaCYK6_7RopKyuJPn9kWXn7Lg9ozUO

Contact Us

If you have any question please leave me your email address, we will reply and send email to you in 12 hours.

Our Working Time: ( GMT 0:00-15:00 )
From Monday to Saturday

Support: Contact now