The area of a square is stored in a double variable named area.

LANGUAGE: Visual Basic

CHALLENGE:

The area of a square is stored in a double variable named area.  Write an expression whose value is the length of the diagonal of the square.

SOLUTION:

Math.Sqrt(2*area)