312-50V11 · Question #130
In Wireshark, the packet bytes panes show the data of the current packet in which format?
The correct answer is D. Hexadecimal. Wireshark's Packet Bytes pane renders the raw content of each captured packet in hexadecimal format, typically paired with an ASCII sidebar.
Question
In Wireshark, the packet bytes panes show the data of the current packet in which format?
Options
- ADecimal
- BASCII only
- CBinary
- DHexadecimal
How the community answered
(29 responses)- A7% (2)
- C3% (1)
- D90% (26)
Why each option
Wireshark's Packet Bytes pane renders the raw content of each captured packet in hexadecimal format, typically paired with an ASCII sidebar.
Wireshark does not render packet bytes in decimal; decimal notation would be less compact and is not standard for byte-level packet analysis.
ASCII is presented as a secondary column next to the hex dump for printable characters only and is not the primary format of the Packet Bytes pane.
Binary representation is not used in the Packet Bytes pane because it would produce an extremely verbose and unreadable output for any non-trivial packet.
Wireshark displays packet payload data in the Packet Bytes pane as a hex dump - each byte is represented as a two-digit hexadecimal value - because hexadecimal is compact and maps cleanly to binary data. An ASCII column is shown alongside purely as a readability aid, but hexadecimal is the primary format of the pane.
Concept tested: Wireshark Packet Bytes pane hexadecimal display format
Source: https://www.wireshark.org/docs/wsug_html_chunked/ChUsePacketBytesPaneSection.html
Topics
Community Discussion
No community discussion yet for this question.