ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 167 - Certified Platform App Builder discussion

Report
Export

Universal Containers (UC) tracks Account locations in Zip Code, a custom text field with a validation rule to enforce proper formatting of the US ZIP+4 code for UC's orders.

What formula should the app builder create on Order to display only the first five digits of Zip Code from the parent Account?

A.
BEGINS(Account.Zip_Code_r, 5)
Answers
A.
BEGINS(Account.Zip_Code_r, 5)
B.
TEXT(Account.Zip_Code_c, 5)
Answers
B.
TEXT(Account.Zip_Code_c, 5)
C.
LEFT(Account.Zip_Code_c, 5)
Answers
C.
LEFT(Account.Zip_Code_c, 5)
D.
LPAD(Account.Zip_Code__r, 5)
Answers
D.
LPAD(Account.Zip_Code__r, 5)
Suggested answer: C

Explanation:

LEFT(Account.Zip_Code_c, 5) is the correct formula to display only the first five digits of Zip Code from the parent Account. LEFT function returns the specified number of characters from the left side of a text string. Account.Zip_Code_c is the custom text field that stores the Zip Code on Account object. 5 is the number of characters to return from the left side of the Zip Code. The other options are not valid formulas or functions.

asked 23/09/2024
German Lopez
40 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first