Answer:
The number of cookies in the jar is 7.
If we include the 5 cookies from the tray in the jar the total number of cookies would be 5 + 7 = 12
Step-by-step explanation:
<em>Consider the number of cookies in the jar as 'x'. Hence the equation formed would be:-</em>
7(x) + 5 = 54
7x + 5 = 54
7x = 54 - 5
7x = 49
x = 
x = 7
The number of cookies in the jar is 7.
If we include the 5 cookies from the tray in the jar the total number of cookies would be 5 + 7 = 12
<em>Hope this helps.</em>
Answer:
x = 550 ÷ 33
what are the answer choises
Step-by-step explanation:
Answer:
It’s C and D I just finished the text and finished with 100% thanks to the person in the comments in the question below
Step-by-step explanation:
Answer:
The answer is "0.45385".
Step-by-step explanation:
The time is taken to reach the coast
The time is taken to reach Q after reaching the coast 
Total time,
This has to be minimum,


x=0.45385
Coding the given algorithm in python 3, the <em>greatest</em> <em>common </em><em>divisor</em><em> </em>of the values (124 and 244) and (4424 and 2111) are 4 and 1 respectively.
The program implementation goes thus :
def gcd(a, b):
<em>#initialize a function named gcd which takes in two parameters</em>
if a>b:
<em>#checks if a is greater than b</em>
return gcd (b, a)
<em>#if true interchange the Parameters and Recall the function</em>
elif a == 0:
return b
elif a == 1:
return 1
elif((a%2 == 0)and(b%2==0)):
<em>#even numbers leave no remainder when divided by 2, checks if a and b are even</em>
return 2 * gcd(a/2, b/2)
elif((a%2 !=0) and (b%2==0)):
<em>#checks if a is odd and B is even</em>
return gcd(a, b/2)
else :
return gcd(a, b-a)
<em>A</em><em> </em><em>sample</em><em> </em><em>run</em><em> </em><em>if</em><em> </em><em>the</em><em> </em><em>program</em><em> </em><em>on</em><em> </em><em>the</em><em> </em><em>values</em><em> </em><em>given</em><em> </em><em>:</em>
print(gcd(124, 244))
print()
<em>#leaves a space after the first output</em>
print(gcd(4424, 2111))
Learn more :brainly.com/question/25506437