Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumKotlincoroutines basics launch asyncSingle-choice MCQ

What does the inner launch print, and why?

runBlocking(Dispatchers.Default) { launch { // no dispatcher specified here println(Thread.currentThread().name.contains("DefaultDispatcher")) } }