Answer:
54
Step-by-step explanation:
44−(−10)
=44−(−10)
=44+10
=54
Answer:
Written in Python
def sums(n):
total = 0
for i in range(1,n+1):
if i%2 == 0:
total = total + i*2
else:
total = total + i
return(total)
Step-by-step explanation:
The function is written in Python
def sums(n):
This initializes total to 0
total = 0
This iterates through the integers that makes up n i.e. 1,2,3.....n
for i in range(1,n+1):
This checks if current digit is even
if i%2 == 0:
If yes, it adds the double of the digit
total = total + i*2
else:
If otherwise, it adds the digit
total = total + i
This prints the calculated sum or total
return(total)
To call the function from main, use the following:
print(sums(n))
Where n is a positive integer. i.e. 
It would be 210,000 cause 2.5x20 = 50% so 420,000 x 50%
Answer:
33%
Step-by-step explanation:
1) Make it a decimal: 1/3=0.33
2) Make it a percent (move it 2 spaces larger): 0.33=33%
48π cm^3
Step-by-step explanation:
The formula for the volume of a cone is...

We can plug everything we know from the photo into the equation, but note that the picture gives us the diameter, which is 8, instead of the radius. The radius is half of the diameter, so the radius will be 4. Also we will be leaving pi as it is, instead of changing it to 3.14.


V = 48π
The paper cone can hold <u><em>48π cubic centimeters</em></u> of water.