1 answer
2
5. Why is it that voice and video traffic is often sent over TCP rather than UDP in today’s Internet? (Hint: The answer we are looking for has nothing to do with TC...
0 answers
3
30. A system uses the Stop-and-Wait ARQ Protocol. If each packet carries 1000 bits of data, how long does it take to send 1 million bits of data if the distance betwe...
2 answers
4
17. A sender sends a series of packets to the same destination using 5-bit sequencenumbers. If the sequence number starts with 0, what is the sequence number aftersending...
2 answers
5
13. What does the error "Null Pointer Assignment" mean and what causes this error?
1 answer
6
(5) Would the following program give a compilation error or warning?main() { float i = 10, *j; void *k; k=&i; j= k; printf("\n%f", *j); }
1 answer
7
6. Would the following program compile?main( ) { int a = 10, *j; void *k; j = k = &a; j++ ; k++; printf ("\n %u %u", j, k ) ; }Please explain above program with some exam...
3 answers
8
16. Match the following to one or more layers of the OSI model:a. Route determination - Network layerb. Flow control ...
2 answers
10
Can you write another expression which does the same job as ++*ptr ?