


Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Definitions and use cases for transmission control protocol (tcp) and user datagram protocol (udp). Learn when to use each protocol and their key features, including reliability, connection orientation, and flow control.
Typology: Quizzes
1 / 4
This page cannot be seen from the preview
Don't miss anything!



TCP - Transmission Control Protocol 1. Connection Oriented
DEFINITION 2 UDP - User Datagram Protocol 1. Message Oriented 2. Unreliable Transfer 3. Does not provide: reliability, connection setup, throughput guarantee, congestion control timing, or security. TERM 3
DEFINITION 3 In situations where the data can be sent in a single packet or if the data being sent will be replaced with data from a packet that will be sent after. (VOIP, Online Gaming etc.) TERM 4
DEFINITION 4 In situations where data reliability is crucial. Such as surfing the web or downloading files. TERM 5
DEFINITION 5 A protocol is an object that sets up some standardized way of communicating across a network.
A packet header is information that precedes the content of the packet in order to give information to the protocol about where the information is supposed to go. TERM 7
DEFINITION 7 accept() accepts new connections on a server socket. returns a new socket file descriptor. accept() is not a blocking function. TERM 8
DEFINITION 8 The Hypertext Transfer Protocol (HTTP) is a networking protocol for distributed, collaborative, hypermedia information systems. mainly the world wide web. TERM 9
DEFINITION 9 A port is a communications end point for the transport layer protocols of the Internet Protocol suite. TERM 10
DEFINITION 10 Instant messaging, simple file transfer.
A table that contains two things: inode ID of the file and the filename of the file. TERM 17
DEFINITION 17 Hard link - directory entry (i.e. all regular files) soft link - serves as a reference to another file. TERM 18
DEFINITION 18 Disk scheduling and seeking algorithms. FIFO - First In First Out: request is processed in order of arrival SSTF - Shortest Seek Time First SCAN - Scan the disk from the outside to the inside processing requests along the way then move from the inside to the outside. C-SCAN - Disk arm moves in a circular pattern processing requests.