The expression that has a coefficient of 10 and constant of 5 is 10x + 5.
<h3>What is an
equation?</h3>
An equation is an expression that shows the relationship between two or more variables and numbers.
A coefficient is a number or any symbol representing a constant value that is multiplied by a variable. A constant is a value or number that never changes in expression.
The expression that has a coefficient of 10 and constant of 5 is 10x + 5.
Find out more on equation at: brainly.com/question/2972832
#SPJ1
Answer:
4x
Step-by-step explanation:
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. 
Asure usig lenght for yards! hope it helps!