A is the answer because the key word is TOTAL and EACH
Vertical angles are equal...so set ur angles equal to each other and solve for x
5x + 10 = 7x - 12
12 + 10 = 7x - 5x
22 = 2x
22/2 = x
11 = x <==
Answer: 2
<u>Explanation:</u>
A pond had 60 fish but 10 were added so now the pond has 70 fish.
The probability of choosing a carp is 1/2 so
= 35 are now carp.
There were 27 carp and now there are 35 carp so 8 carp were added.
10 fish were added and 8 of them were carp so 2 of them were tench.
First of all, a bit of theory: since the area of a square is given by

where s is the length of the square. So, if we invert this function we have
.
Moreover, the diagonal of a square cuts the square in two isosceles right triangles, whose legs are the sides, so the diagonal is the hypothenuse and it can be found by

So, the diagonal is the side length, multiplied by the square root of 2.
With that being said, your function could be something like this:
double diagonalFromArea(double area) {
double side = Math.sqrt(area);
double diagonal = side * Math.sqrt(2);
return diagonal;
}