Answer:
of their corresponding sides.
Answer:
A = 388.58 cm^2
Step-by-step explanation:
For a cone whose base has a radius R, and a hypotenuse S, the area is:
A = pi*R^2 + pi*R*S
Where pi = 3.14
In this case, we can see that the diameter is: 15cm
Then the radius, half of the diameter, is:
R = 15cm/2 = 7.5cm
The hypotenuse is 9cm, then S = 9cm
A = 3.14*(7.5cm)^2 + 3.14*(9cm)*(7.5cm) = 388.575 cm^2
Rounding to two decimal places, we need to look at the third one, which is a five, so we need to round up:
A = 388.58 cm^2
Do Pythagorean Theorem because a rectangle divided in diagonals form right triangles
A^2+b^2=C^2
Plug in the correct numbers and solve
A and B can be switched around but C is always the longest diagonal side which is called the hypotenuse not the Adjacent sides that form a right angle
So with correct solving you should get 5.
Assuming a d-heap means the order of the tree representing the heap is d.
Most of the computer applications use binary trees, so they are 2-heaps.
A heap is a complete tree where each level is filled (complete) except the last one (leaves) which may or may not be filled.
The height of the heap is the number of levels. Hence the height of a binary tree is Ceiling(log_2(n)), for example, for 48 elements, log_2(48)=5.58.
Ceiling(5.58)=6. Thus a binary tree of 6 levels contains from 2^5+1=33 to 2^6=64 elements, and 48 is one of the possibilities. So the height of a binary-heap with 48 elements is 6.
Similarly, for a d-heap, the height is ceiling(log_d(n)).
Answer:
x would be equal to 70 grades
Step-by-step explanation:
The angle QRS is equal to 180 - 130 = 50 grades.
We add up that with the other 60 grades on the left, and we encounter ourselves with a simple equation:
60 + x + 50 = 180
x = 70
Hope this was helpful