Answer:
C) involuntary and fixed
Step-by-step explanation:
Can you type it out i can’t see the question
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. 
Answer:
they work together, it will take 2.4 hours to build the wall.
Step-by-step explanation:
One bricklayer can build a wall in 6 hours.
One hour work = 
Another bricklayer can build the same wall in 4 hours.
One hour work = 
They can together, how long will take them to build the wall.
Let's take "t" the time taken to build the wall.
The sum of their work rate = 1 (To build the wall)

Now we have to solve this equation. Take LCD of 6 and 4.
The LCD (least common divisor) of 6 and 4 is 12.

5t = 12*1
5t = 12
Dividing both sides by 5, we get
t = 
t = 2.4 hours.
So, they work together, it will take 2.4 hours to build the wall.