Answer:
$2,410.69
Step-by-step explanation:
$1,950 x 1.15 = $2,242.50 after 15% markup
$2,242.50 x 1.075 = $2,410.68 after the 7.5% sales tax.
or you can do:
$1,950 x 0.15 = $292.5 markup
$1,950 + $292.5 = $2,242.50
$2,242.50 x 0.075 = $168.19 for sales tax
$2,242.50 + $168.19 = $2,410.69 total
Answer:
4
Step-by-step explanation:
It goes through that one on the graph
A point has D) zero dimensions
Answer:
0.73 N to 2 dp.
Step-by-step explanation:
F = k/d^2 where k is a constant , F = force and d = distance.
Substituting:
0.36 = k / (6)^2
k = 36*0.36 = 12.96 s the equation is F = 12.96 / d^2.
When d = 4.2 :
F = 12.96 / 4.2^2
F = 0.73 Newtons to 2 dp.
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)).