Describe the Internet Protocol Suite.

What will be an ideal response?


The Internet Protocol Suite is a set of protocols used in combination for different networking tasks. The Internet Protocol and the Transmission Control Protocol (TCP) are the two underlying standards that all other protocols use, so the suite is commonly referred to as TCP/IP. While the Internet Protocol handles each transmission of each packet of data, the TCP is like an overseer, organizing data into packets and sending them to the IP. On the flip side, the TCP rebuilds files from the individual packets the IP sent.

Computer Science & Information Technology

You might also like to view...

Which of the following is not a method of class String?

a. toUpperCase b. trim c. toCharacterArray d. All of the above are methods of class String

Computer Science & Information Technology

What command in the Windows 10 CLI will display the contents of a text file on the standard output device?

A. TYPE B. PRINT C. ASSOC D. XCOPY

Computer Science & Information Technology

Suppose you have the following array declaration in a program.

``` int yourArray[5]; ``` Further suppose that in the implementation of C++ you are using an int that requires 4 bytes. i) When your program runs, how much memory is required for this array? ii) Suppose further that your array starts at memory location decimal 100. What will be the address of yourArray[3]? iii)If you wrote to the (illegal) index 7 position in yourArray to what address would this clobber? a) i) The array takes 5 bytes, ii) yourArray[3] will be an int located at Address 103. iii) writing to yourArray[7] will clobber an int starting at location 107. b) i) The array takes 10 bytes, ii) yourArray[3] will be an int located at Address 106. iii) writing to yourArray[7] will clobber an int starting at location 114 c) i) The array takes 20 bytes, ii) yourArray[3] will be an int located at Address 112 iii) writing to yourArray[7] will clobber an int starting at location 128 d) The purpose of a high level language is to insulate the programmer from these details. It isn’t possible to know this without probing the source to the operating system and the compiler, or extensive debugging.

Computer Science & Information Technology

Your company has formed a partnership with another company and you want to allow certain resources to be shared between the two companies. What should you create?

A. an internet B. an intranet C. an extranet D. a piconet

Computer Science & Information Technology