Computer Science, asked by brianfede27, 6 months ago

What is NOT a built-in function in python?
a. fabs()
b. print()
c. string()
d. sqrt()

Answers

Answered by sanskaar49
10

Answer:

Option C

Explanation:

Because it is javascript and syntax is wrong

Answered by priyarksynergy
4

String() is not an in-built function in python.

Explanation:

  • The 'fabs()' is in an in-built python function offered by the math module. It is used to return the magnitude value of a signed float type number.
  • The 'sqrt()' is in an in-built python function also offered by the math module. it is used to calculate the square root of a number.
  • The 'print()' is also an in-built python function and is used to display texts, numbers or anything we want in the output.
  • For example, math.fabs(-1.5) will return 1.5, math.sqrt(9) will return 3 and print("Hello!") will show Hello! in the output.
  • There is no such function as 'string()' in python. Strings can implemented using lists in python.

Similar questions