Total number of loaves sold = 9360 + 2640 = 12000
Number of loaves of whole wheat bread = 2640
Percentage of loaves of whole wheat sold = 2640/12000 x 100 = 22%
Answer: 22%
Answer:
The function is increasing for all real values of x where x < -1 and where x > 4
Step-by-step explanation:
The function is "not" increasing for all real values of x where x<0, when
-1 < x < 0
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. 
6 + 5 = 11
5 + 6 = 11
11 - 5 = 6
11 - 6 = 5
hope this helped!
Are we supposed to solve b2