Exam TDS-C01 All QuestionsBrowse all questions from this 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?

    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
RespurOption: D

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

MonBoujOption: D

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

arien_chenOption: D

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

Angelspace2023Option: D

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