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")