Answer:
0.5 inches per a month
Step-by-step explanation:
you turn them to a decimal to make them easier and then divide them to get the answer.
Answer: Median = 3
Explanation:
Sort the numbers to get {1,2,3,5,6}. The middle most number is 3, so that's the median.
Answer:
24 inches
Step-by-step explanation:
Let the longest side be x, the middle side be y and the shortest side be z
Rest is in the attached file
It is positive 6x. Hope this helps!
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).