Skip to main content

DEX-403 Real Exam Questions

Declarative Development for Platform App Builders in Lightning

474 questions available · Page 1 of 48

Updated Exam DumpsVerified AnswersPass Guarantee

Get Complete Exam Dumps
Question 1 Single choice

The VP of Marketing wants to broadcast an e-mail to 10,000 contacts in Salesforce on a regular basis, but realizes Salesforce's mass e-mail functionality has a limitation on the number of e-mails that can be sent each day.

What action should the app builder take?

  1. A

    Request Salesforce increase the number of maximum daily e-mails.

  2. B

    Download all Contacts to a CSV file and use an e-mail client to send the e-mails.

  3. C

    Develop Apex code and Visualforce pages to send the e-mails.

  4. D

    Research and evaluate products available on AppExchange to send mass e-mails.

Show answer and explanation

Correct answer: D

Question 2 Single choice

Universal Container wants to display a message when a case needs follow up.

What can be used to display different text on the case record depending on the number of days a case is opened?

  1. A

    Formula Field

  2. B

    Workflow Update

  3. C

    Case Process

  4. D

    Lightning Process Builder

Show answer and explanation

Correct answer: A

Question 3 Single choice

What language is used to query Salesforce for specific information?

  1. A

    Apex

  2. B

    SOQL

  3. C

    SQL

  4. D

    SOSL

Show answer and explanation

Correct answer: B

Question 4 Single choice

A manager wants to calculate the number of days since an account was last contacted through e-mail.

What field type should be used to accomplish this?

  1. A

    Number

  2. B

    Date

  3. C

    Roll-up summary

  4. D

    Formula

Show answer and explanation

Correct answer: D

Question 5 Single choice

What Lightning Experience feature allows Salesforce users to modify existing records without opening them?

  1. A

    Inline editing in List Views

  2. B

    Global Actions

  3. C

    Editable Reports

  4. D

    The edit option in the Favorites menu

Show answer and explanation

Correct answer: A

Question 6 Single choice

What is true regarding changing the field type of a rich text area?

  1. A

    It is not possible to change the field type of a rich text area.

  2. B

    Rich text area fields can be converted but only to a long text area field type.

  3. C

    Images in a rich text area are deleted when the field type is converted.

  4. D

    Rich text area fields can be converted to a text area field type but data may be truncate.

Show answer and explanation

Correct answer: B

Question 7 Multiple choice

For which report types custom summary formulas are available? (Choose 3)

  1. A

    Joined

  2. B

    Summary

  3. C

    Tabular

  4. D

    Matrix

Show answer and explanation

Correct answers: A, B, D

Question 8 Multiple choice

ABC Company installs an unmanaged package.

Which of the following are true? (Choose two.)

  1. A

    Unmanaged packages have a namespace prefix.

  2. B

    Components of unmanaged packages can be edited.

  3. C

    Unmanaged packages don't have a version number.

  4. D

    Unmanaged packages can be upgraded.

  5. E

    Tests are executed during deployment.

Show answer and explanation

Correct answers: B, E

Explanation

*unmanaged cannot be upgraded* *unmanaged have a version number* *unmanaged namespace is removed* *all need 75% code coverage during deployment*

Question 9 Multiple choice

Which of the following can be source of report chart placed in page layout?(Choose 2)

  1. A

    Summary

  2. B

    Joined

  3. C

    Tabular

  4. D

    Matrix

Show answer and explanation

Correct answers: A, D

Question 10 Single choice

Which Validation formula is valid to make sure Phone & Email fields are filled in when converting a Lead?

  1. A

    IsConverted = TRUE && (ISBLANK(Phone) && ISBLANK(Email)

  2. B

    IsConverted = TRUE && OR(ISBLANK(Phone), ISBLANK(Email))

  3. C

    IsConverted = FALSE && (ISBLANK(Phone) && ISBLANK(Email)

  4. D

    IsConverted = TRUE && OR(Phone, Email)

Show answer and explanation

Correct answer: B