Computer Science, asked by BENBIL2007, 4 months ago

What will be the output of Math.sqrt(-4.0)

Answers

Answered by shristiiiiiii
0

Explanation:

The Math.sqrt() function returns the square root of a number, that is

∀x≥0,Math.sqrt(x)=x

=the uniquey≥0such thaty2=x

Answered by gosaviatul3
1

Answer:

var a = Math.sqrt(0);

var b = Math.sqrt(1);

var c = Math.sqrt(9);

var d = Math.sqrt(64);

var e = Math.sqrt(-9);

Try it Yourself »

Similar questions