TDS-C01 Exam QuestionsBrowse all questions from this exam

TDS-C01 Exam - Question 88


You need to create a calculation that returns a customer name followed by a comma, a space, and then the customer’s age (for example John Doe, 32).

What should you include in the calculation?

Show Answer
Correct Answer: D

To create a calculation that returns a customer name followed by a comma, a space, and then the customer’s age, you need to use the correct syntax for concatenation and converting the age to a string. The correct option is to concatenate the customer name with a comma and a space, and then convert the age to a string using STR. Therefore, the calculation should be [Customer Name] + ', ' + STR([Age]).

Discussion

4 comments
Sign in to comment
RespurOption: D
Mar 14, 2023

D is correct but with some correction others are totally wrong Tried ([Customer Name]) +"," + STR([Age])

Angelspace2023Option: D
May 4, 2023

ABC are obviously wrong. D has potential.. lol [Customer Name] +", " + STR([Age])

arien_chenOption: D
Jul 22, 2023

I think the answer is D but typo ] -> ) the right answer should be : [Customer Name] +"," + STR([Age])

MonBoujOption: D
Nov 26, 2023

D. [Customer Name) +"," + STR([Age])