Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumGoiota and typed enumsSingle-choice MCQ

Given the following constant block, what is the value of KB?

type ByteSize float64 const ( _ = iota // skip 0 KB ByteSize = 1 << (10 * iota) MB GB )