Beginner Go (Golang)
Q31 / 100

What are exported identifiers in Go?

Correct! Well done.

Incorrect.

The correct answer is B) Identifiers starting with an uppercase letter, visible outside the package

B

Correct Answer

Identifiers starting with an uppercase letter, visible outside the package

Explanation

Go uses capitalization for visibility. Println, Error, and UserID are exported. println, myVar are unexported (package-private).

Progress
31/100