Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardGointerface representation iface itabSingle-choice MCQ

Given the assignment, what is true about the second word of the resulting `iface` value?

type T struct{ x [3]int } func (t T) Read(p []byte) (int, error) { return 0, nil } var r io.Reader t := T{} r = t // value (not pointer) stored in interface