Let y be the temperature
Let m be the rate of temperature drop in degrees per hour
Let x be the number of hours elapsed since 8PM
The initial temperature (at x = 0) is 0
y = mx
Four hours from 8 PM, the temperature was -16.8 degrees
-16.8 = m(4)
m = -4.2 degrees per hour
At 9PM, one hour will have elapsed.
y = -4.2(1)
y = -4.2 degrees
Answer:
26.25
Step-by-step explanation:
52.50 divided by 2= 26.25
Answer:
4/8 or
1/2
Step-by-step explanation:
if there are 8 students and 4 of them study Chemistry then we take those 4 out of the equation then there are 4 left and there are now 4 possibly choses
Our x equals 0 so the answer is 0
Assuming we need to find i such that
1 ≤ i ≤ n and t[i]=i.
If we need to find only the first occurrence, we can do:
for i:1 to n {
if t[i]=i then return(i)
}
If exhaustive search is required, then put the results (values of i) in an array or a linked list, return the number of values found, and the array (or linked list).