Answer:
Step-by-step explanation:

1025ft above Sea Level is John
25ft below Sea Level is his Brother
1025ft + 25ft = 1050ft
Thats the difference in altitude
Answer: 0.3 kg
Step-by-step explanation:
£5 = 500p
500p ÷ 5 = 100
100 x 3 = 300 grams
300 ÷ 1000 = 0.3 kg
Hope this helps :)
Step-by-step explanation:
-y=226-182
-y=44
Y=-44
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).