CertyRush
Đang tải...
C CertyRush
Câu hỏi free preview

Câu 11: GPYC: GIAC Python Coder

A log file is stored in variable `a`. The file has the following format for each log entry, in order, stored in big endian:Field 1: 2-byte integer -Field 2: 2-byte integer -Field 3: 4-byte integer -Which of the following would unpack a line from the log file into the proper fields?

Nội dung câu hỏi

A log file is stored in variable `a`. The file has the following format for each log entry, in order, stored in big endian:Field 1: 2-byte integer -Field 2: 2-byte integer -Field 3: 4-byte integer -Which of the following would unpack a line from the log file into the proper fields?

Các lựa chọn

Đáp án được giữ gọn theo nhãn A, B, C, D trong phần bình chọn tương tác.

  1. A. struct.unpack('>HH4s',a) — đáp án hiện tại
  2. B. struct.unpack('<HHssss',a)
  3. C. struct.unpack('>HHHH',a)
  4. D. struct.unpack('!BxBx4s',a)

Cộng đồng

0 bình luận công khai. Tên thành viên được ẩn một phần.

Chưa có bình luận. Mở giao diện tương tác để bắt đầu thảo luận.

Câu hỏi liền kề