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;
}
The volume formula of a cone is

the r is the radius and h is the height. However, if you multiply by pi, you will get an approximated volume of the cone. So we will multiply like this for now.

Don't worry, we'll use pi in the end.
I'm going to assume that 7 inches is your radius. We need to plug in 7 for r and 4 in for h into the equation. Once we do that, it will look like this.


means we will need to divide one by 3. That gives us 0.33333... now we have to multiply by

we get 16.33333... now the last thing we need to do is multiply by 4, which is h. We get 65.33333. Add pi and you have your answer.
Answer:
$92
Step-by-step explanation:
- add what you saved and the parents gave you
- subtract that by 180
- $92
Answer : (13)
Let x be the number of party favors in each (27 boxes)
Let y be the number of favors in last box
Given : total of party favors = 1552
27 boxes + last box = 1552
27x + y = 1552
We divide 1552 by 27, the quotient will be our x and the remainder will be y(number of party favors in last box)
Use long division
= 57 and remainder is 13
the number of party favors in each of (27 boxes) = 57
the number of party favors in last box = 13
So, there are 13 party favors in last box.
Read more on Brainly.com - brainly.com/question/9624402#readmore
Answer:
Length is 20 m and width is 4 m.
Step-by-step explanation:
Given:
Perimeter of the rectangular alley, 
Length is 5 times the width.
Let width be
.
So, as per question,
Length,
Now, perimeter of rectangle is given as:

Plug in 48 for
,
for
and
for b.

Therefore, width is 4 m.
Length is
m.