Golang / GoLang Basics Interview Questions
What are goroutines and how do you use sync.WaitGroup to wait for them?
A goroutine is a lightweight, concurrently executing function managed by the Go runtime. The cost to create one is ~2 KB of stack and ~300 ns — roughly 1000× cheaper than an OS thread. The runtime multiplexes goroutines onto OS threads with its own scheduler.
// Launch a goroutine with the 'go' keyword
go fmt.Println("running concurrently")
// Anonymous goroutine
go func(msg string) {
fmt.Println(msg)
}("hello from goroutine")
// PROBLEM: main() may return before goroutines finish
// SOLUTION: sync.WaitGroup
var wg sync.WaitGroup
for i := 0; i < 5; i++ {
wg.Add(1) // register ONE more goroutine — do this BEFORE go
go func(n int) {
defer wg.Done() // signal this goroutine is complete
fmt.Printf("worker %d\n", n)
}(i)
}
wg.Wait() // block until all goroutines call Done() — counter reaches 0
fmt.Println("all workers finished")
// Output (order may vary):
// worker 3
// worker 1
// worker 0
// worker 4
// worker 2
// all workers finished
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
