44.5k views
16 votes
Question 11

1 pts
You need to find the square root of a value. Which of the following functions would you
use?
int
fabs
pow
O sqrt

User MartinodF
by
5.1k points

1 Answer

9 votes

Answer:

sqrt

Step-by-step explanation:

Computing is the process of using computer hardware and software to manage, process and transmit data in order to complete a goal-oriented task. It can be classified into the following categories;

If you need to find the square root of a value. The function you would use is sqrt.

In Computer programming, the sqrt () function is a mathematical tool which allows a user to find the square root value of any numerical value (numbers)

For example the code for finding the square root of a value using Python programming language is;

num = 36

\\This is the value of the original number\\

sqrt = num ** (0.5)

print ("The square root of the number "36" is 6")

User Steev
by
6.2k points