Give an example of a protocol mechanism that hides an error.
What will be an ideal response?
For example, routing protocols bypass failures and intermittent packet loss can go unnoticed because
TCP automatically retransmits.
Computer Science & Information Technology
You might also like to view...
If a document is stored in a cloud service app such as SkyDrive, it will be automatically synchronized to all computers connected to the account
Indicate whether the statement is true or false
Computer Science & Information Technology
What is sum after the following loop terminates?
int sum = 0; int item = 0; do { item++; sum += item; if (sum > 4) break; } while (item < 5); a. 5 b. 6 c. 7 d. 8 e. 9
Computer Science & Information Technology