Range = {-2(-2) - 5, -2(-1) - 5, -2(1) - 5, -2(2) - 5} = {4 - 5, 2 - 5, -2 - 5, -4 - 5} = (-1, -3, -7, -9}
Answer:
length=50m
width=25m
Step-by-step explanation:
perimeter is the distance all round,hence
2(l+w)=2(2x+x)=
4x+2x=6x=150
6x=150x
x=25
l=50m
w=25m
Answer:
The answer is 32.
Step-by-step explanation:
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).