There are 16 cups in 1 gallon so you would have to turn the denominator in the fraction into a 16 meaning you would multiply by 4 (because 4 goes into 16, 4 times). Your new fraction is 12/16. now you do 6 gallons*16 cups and you get 96 cups. Then you add the fraction onto 96 and you would be adding 12. Your final answer is 108 cups in 6 3/4 gallons
        
                    
             
        
        
        
The program is an illustration of loops
<h3>What are loops?</h3>
Loops are program statements that are used to perform repetition
<h3>The main program</h3>
The program written in Python, where comments are used to explain each line is as follows:
#This initializes sum to 0
summ = 0
#This gets input for the first number
num = int(input())
#This is repeated while num is not -1
while num!= -1:
    #This calculates the sum
    summ+=num 
    #This gets input for the num
    num = int(input())
#This prints the sum
print(summ)
Read more about loops at:
brainly.com/question/16397886
 
        
             
        
        
        
Answer:
5=y-intercept
Step-by-step explanation:
the y intercept point is when y has a number but x is 0 so we see what is y (f(x)) and it is 5
 
        
             
        
        
        
You would use PEMDAS
But since any number divided by 1 is the number by which it is divided by then you can eliminate that. Now your problem looks like this:
8✖️4➕9✖️56➕57
Since there are no parentheses or exponents then you would multiply. 
8✖️4= 32
32➕9✖️56➕57
Then multiply the other multiplication problem.
9✖️56= 504
32➕504➕57
Now you can add all of the numbers together 
32➕504=536
536➕57=593
Your answer is 593
Hope this helps! :3