Answer: It may or may not be B.
For question 40 the answer is B
Answer:
3 km
Step-by-step explanation:
He starts by going 5 km east, then he turns around and goes 2 km west. So he is now 3 km from his house.
Step-by-step explanation:
Use the equation ?/45.20 = 35\100 and what you get is your answer
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).