Answer:
98 degrees
Step-by-step explanation:
m<H = 45, m<F = 53
180 = 45 + 53 + (180-x)
82 = 180-x
x+82 = 180
x = 98
The answer is option "3, 40".
<span>m∠cab = 2x
m∠acb = x + 30
m∠cbd = 5x − 50
Now,
</span>m∠cab + m∠acb = m∠cbd
2x+x+30 = 5x-50
2x+x-5x = -50-30
-2x = -80
x = 40
Answer:
True
Step-by-step explanation:
This equation correctly represents the total cost of the food that the friends ended up paying for the popcorn and sodas. In this expression, the cost of each individual soda is represented by the variable x which is multiplied by 4 since each one of the four friend's purchased their own soda. After making this multiplication process that product is added to the initial $12 that they all spent together on the popcorn.
Answer:
min = a_1
for i:= 2 to n:
if
< min then min = 
return min
Step-by-step explanation:
We call the algorithm "minimum" and a list of natural numbers 
So lets first set the minimum to 
min = a_1
now we want to check all the other numbers.
We can use a simple for loop, to find the minimum
min = a_1
for i:= 2 to n:
if
< min then min = 
return min