Computer Science, asked by anuragele1979, 7 months ago

assign the value of √2 (1.414) to a variable.

please explain​

Answers

Answered by aswinasok1245
4

Answer:

Java

double a = 1.414; OR double a = Math.sqrt(2);

Python

a = 1.414 OR a = math.sqrt(2)

Explanation:

The Question is to store the value which is √2 in a variable

Similar questions