edited by
14,693 views
48 votes
48 votes

Consider a simple graph with unit edge costs. Each node in the graph represents a router. Each node maintains a routing table indicating the next hop router to be used to relay a packet to its destination and the cost of the path to the destination through that router. Initially, the routing table is empty. The routing table is synchronously updated as follows. In each updated interval, three tasks are performed.

  1. A node determines whether its neighbors in the graph are accessible. If so, it sets the tentative cost to each accessible neighbor as $1$. Otherwise, the cost is set to $∞$.
  2. From each accessible neighbor, it gets the costs to relay to other nodes via that neighbor (as the next hop).
  3. Each node updates its routing table based on the information received in the previous two steps by choosing the minimum cost.

Continuing from the earlier problem, suppose at some time $t$, when the costs have stabilized, node $A$ goes down. The cost from node $F$ to node $A$ at time $(t + 100)$ is :

  1. $>100$ but finite
  2. $\infty$
  3. $3$
  4. $>3$ and $\leq 100$
edited by

7 Answers

5 votes
5 votes

yep, answer will be 101.

edited by
Answer:

Related questions

23 votes
23 votes
4 answers
1
15 votes
15 votes
3 answers
2
Ishrat Jahan asked Nov 3, 2014
5,913 views
Count to infinity is a problem associated with:link state routing protocol.distance vector routing protocolDNS while resolving host nameTCP for congestion control
27 votes
27 votes
3 answers
4
Ishrat Jahan asked Nov 3, 2014
19,345 views
Consider the following message $M = 1010001101$. The cyclic redundancy check (CRC) for this message using the divisor polynomial $x^5+x^4+x^2+1$ is :$01110$$01011$$10101$...