Respuesta :
Answer:
The answer to this question is given below in the explanation section.
Explanation:
The correct option for this question is tostring(2.56).
when you will convert any value/number to string then you call tostring() function. Because it is a builtin function in most of the language. It converts any value given in the parameter to a string.
Other options are not correct because string(2.56) looks a name of function string with parameter 2.56. str() and makestring() presenting the same purpose because their name shows that they are user-defined functions.