Computer Science

Name the built-in mathematical function/method:

(a) Used to return an absolute value of a number.

(b) Used to return the value of xy, where x and y are numeric expressions.

(c) Used to return a positive value of the expression in float.

Python Functions

3 Likes

Answer

(a) abs()

(b) pow(x, y)

(c) math.fabs()

Answered By

2 Likes


Related Questions