Complete the sentence to explain encapsulation in networking.
Encapsulation is the process of adding [1] to data as it moves down the layers of the OSI model.
Encapsulation adds headers and sometimes trailers to data at each layer to prepare it for transmission.
Complete the sentence to explain decapsulation in networking.
Decapsulation is the process of [1] headers and trailers from data as it moves up the layers of the OSI model.
Decapsulation removes headers and trailers to extract the original data as it moves up the layers.
Fix the error in the explanation of encapsulation.
Encapsulation happens when data moves from the [1] layer in the OSI model.
Encapsulation occurs as data moves down from the application layer to the physical layer, adding headers at each step.
Fill both blanks to describe the order of encapsulation and decapsulation.
During encapsulation, data moves [1] the OSI layers, and during decapsulation, data moves [2] the OSI layers.
Encapsulation moves data down the OSI layers adding headers, while decapsulation moves data up removing headers.
Fill all three blanks to complete the dictionary comprehension representing encapsulation steps.
encapsulation_steps = { [1]: 'Add header' for [2], [3] in [('Application', 'Data'), ('Transport', 'Segment'), ('Network', 'Packet')] }The comprehension maps each layer to the action 'Add header' for the data at that step.