The area of a square is stored in a double variable named area. write an expression whose value is length of the diagonal of the square.
1 answer:
You should specify what language you're using in these types of questions; here's an example in C++. #include <iostream> #include <math> int main() { // example area double area = 25; // square root the area to find the length // then apply basic pythagoras double diagonal = sqrt(pow(sqrt(area), 2) + pow(sqrt(area), 2)); return 0; }
You might be interested in
Answer:
The term "savanna" is often used to refer to open grassland with some tree cover, while "grassland" refers to a grassy ecosystem with little or no tree cover.
Explanation:
Answer:
decision support system
Explanation:
E) both C and D
Erro handling and execution paths