closed by
770 views
2 votes
2 votes
closed as a duplicate of: GATE CSE 2006 | Question: 5

For which one of the following reasons does internet protocol(IP) use the time-to-live(TTL) field in IP datagram header?

  1. Ensure packets reach destination within that time
  2. Discard packets that reach later than that time
  3. Prevent packets from looping indefinitely
  4. Limit the time for which a packet gets queued in intermediate routers
closed by

Related questions

3 votes
3 votes
0 answers
2
Tesla! asked Apr 22, 2018
705 views
In a min-heap with $n$ elements with the smallest element at the root, the $7^{th}$ smallest element can be found in time$\Theta (n \log n)$$\Theta (n)$$\Theta(\log n)$$\...
3 votes
3 votes
0 answers
3
Tesla! asked Apr 22, 2018
700 views
Which of the following system calls does not return control to the calling point, on termination?a) forkb) execc) ioctld) none of the option
1 votes
1 votes
3 answers
4
Tesla! asked Apr 22, 2018
848 views
void main(){ fork(); fork(); printf("Hello"); }How many time print function will execute