Complete the code to identify the Protocol Data Unit (PDU) at the Network layer.
The PDU at the Network layer is called a [1].The Network layer uses packets as its Protocol Data Unit (PDU). Packets contain the data along with network addressing information.
Complete the code to identify the PDU at the Transport layer.
At the Transport layer, the PDU is called a [1].The Transport layer breaks data into segments for transmission, adding port information for communication between applications.
Fix the error in the statement about the Data Link layer PDU.
The PDU at the Data Link layer is called a [1].The Data Link layer uses frames as its PDU. Frames include physical addressing and error checking.
Fill both blanks to complete the statement about the Physical layer PDU and the Data Link layer PDU.
The Physical layer transmits data as [1], while the Data Link layer organizes data into [2].
The Physical layer transmits raw bits over the medium. The Data Link layer groups bits into frames for error detection and control.
Fill all three blanks to complete the dictionary comprehension that maps OSI layers to their PDUs.
osi_pdus = {"Physical": [1], "Data Link": [2], "Network": [3]This dictionary maps OSI layers to their Protocol Data Units: Physical layer uses bits, Data Link layer uses frames, and Network layer uses packets.