GIAC Python Coder (GPYC) — Question 8
Variable `traffic` contains a Scapy packet list. A programmer runs the following command: p1=traffic[1]
Which of the following describes the contents of p1, with respect to the `traffic` packet list?
Answer options
- A. All Ethernet layer frames
- B. The contents of the second packet
- C. TCP streams with a session ID of 1
- D. The data stored from the first byte onward
Correct answer: B
Explanation
The correct answer is B because the command accesses the second element in the list, which corresponds to the second packet in `traffic`. Options A, C, and D are incorrect as they refer to different data types or structures that do not specifically relate to the second packet in the list.