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. 
See attached picture with the answer
Danny's score at the end of the game is 30 because:
We started our with 10 points.
He loses 20 points, which brings him down to -10 points.
In the final round he earned 40 points. 40 minus the negative ten points gives us an answer of 30 points.
Since you are given the rate of growth, the population must be computed from the integral ...

Answer:
B) 24/35
Step-by-step explanation:
Cos(X)= Adjacent/Hypotenuse
Cos(X) = 24/25
Therefore, option B is your answer.
Hope this answers your question!!