Many people use relative location on a daily basis by using B) their mental maps of an area.
You know what a certain area looks like, at least approximately, so you don't need to use these other options on a day to day basis. You can rely on your mental maps to do the work for you.
Answer:
Check the explanation
Explanation:
A) Whenever C is sending to D, what other communications are possible?
C’s packet will be seen by A, B and D, but not by E. Thus, D can send to E at the sametime..
B) Whenever B is sending to A, what other communications are likely?
Even though B’s packet will not be seen by D, other nodes, e.g., E, or C, can’t send to D since the packets from these nodes will interfere with the packets from B at A. Therefore, other communications is not likely at the same time.
C) Whenever B is sending to C, what other communications are possible?
B’s packet will be seen by E, A and C, by not by D. therefore, E can send to D at the same point.
function myFunction(num){
n = 0;
total = 1;
while (n < num){
total *= (num - n);
n+=1;
}
return total;
}
alert(myFunction(6));
I'm not too proficient in JavaScript but here's what the function would look like. I hope this helps!