312-49 Exam QuestionsBrowse all questions from this exam

312-49 Exam - Question 4


How many characters long is the fixed-length MD5 algorithm checksum of a critical system file?

Show Answer
Correct Answer: C

The MD5 algorithm produces a hash value that is 128 bits long. When represented as a hexadecimal string, each of the 128 bits is represented by 4 bits, resulting in a 32-character string. Therefore, the fixed-length checksum of an MD5 hash is 32 characters long.

Discussion

8 comments
Sign in to comment
zenguyaz
Dec 17, 2021

The answer is correct, 32 characters. https://stackoverflow.com/questions/6317276/md5-is-128-bits-but-why-is-it-32-characters#

[Removed]Option: D
Aug 26, 2024

The correct answer is D. 16. The MD5 algorithm produces a 128-bit hash value, which is typically represented as a 32-character hexadecimal string, but in terms of raw bytes, it is 16 bytes long.

AnonymousOption: D
Dec 4, 2021

It doesn't matter whether we take a hash of system file or ordinary file. MD5 length is 128 bits. In chars it is 16 chars. 128/8 = 16. https://en.wikipedia.org/wiki/MD5

Ariel235788
Dec 28, 2021

But it does matter since its asking for the checksum. Not the fixed length output

Ariel235788
Dec 28, 2021

You are correct on 16 byte length due to 128 bits. each byte is 2 characters though. 16 x 2 = 32 characters

shpunkOption: D
Dec 8, 2021

16 characters

Ariel235788
Dec 28, 2021

Check zenguyaz source, its 16 bytes that part of your answer is correct but each byte is made up of 2 characters; hence 32 characters in length

thebigdaxOption: C
Jun 26, 2022

the digest is represented as hex so 2 char per byte, 128 / 8 = 16 * 2 = 32

yogaditia15
Nov 14, 2022

32 characters

hoangviet88vn
Nov 15, 2022

C is correct

ahaddanouOption: C
May 3, 2025

In the question they asked how many characters, not how many bytes (How many characters......), the answer was C 32 characters.