double sqrt(double x)
/*Where:
the function receives one number as input "x"
the function returns the square root (a number)
double means floating point number*/
double sqrt(double x) {
//The coding magic done by the provider
}
double result = Math.sqrt(49);
https://www.mathy.com/sqrt?x=49 /sqrt -- effectively the function name x=49 -- is the input