An application developer is creating a map to produce a report which will include literal text
concatenated with a numeric item named TotalCount. Which map rule should the developer use to
produce the following line of their report if TotalCount = 2541? The totals are 2,541!

A.
=”The totals are ” + NUMBERTOTEXT (TotalCount) + “!”
B.
=”The totals are ” + FROMNUMBER (TotalCount, “{#’,’###}”) + “!”
C.
=”The totals are ” + NUMBERTOTEXT (TotalCount, “{#’,’###}”) + “!”
D.
=”The totals are ” + CONVERTTOTEXT (TotalCount, “{#’,’###}”) + “!”
Explanation: