Answer:
Sarah is making 4 batches of granola bars. She needs 7/8 cup peanuts to each batch and her measuring cup holds 1/8 cup.
Thus, if one cup holds then to make , Sarah will have to measure = 7 times for one batch of granola bars.
Therefore, for making 4 batches of granola bars, Sarah must measure 1/8 cup peanuts 7 x 4=28 times.Step-by-step explanation:
Answer:
<em>1.3%</em>
When entered into a calculator, 12/890 (the chance of a given calculator being defective) = 0.01348...
As a percent this is 100*0.01348% = 1.348%, and to the nearest tenth, 1.3%
Answer:
18
Step-by-step explanation:
A:40%
If you put 60 over 150 and x(percent of students) over 100 and cross multiply 100 and 60, you will get 6000. You then divide that by 150 which leaves you with 40 as x and 40 over 100 is 40%.
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)).