Answer:
0.7.
Step-by-step explanation:
x^2 = 0.7x
x^2 - 0.7x = 0
x(x - 0.7) = 0
x = 0, 0.7.
You take 60 and divide it by 10 which is 6 so the height would be 6
Answer:
Scatter plot charts are good for relationships and distributions, but pie charts should be used only for simple compositions — never for comparisons or distributions.
<span>import math
def calculateDistance(x1,y1,x2,y2):
dist = math.sqrt((x2 - x1)**2 + (y2 - y1)**2)
return dist
distance = calculateDistance(2,4,6,8)
print distance</span>