Intermediate
Kotlin
Q50 / 100
What is a Flow in Kotlin coroutines?
Correct! Well done.
Incorrect.
The correct answer is B) A cold asynchronous stream of values that emits multiple values over time
B
Correct Answer
A cold asynchronous stream of values that emits multiple values over time
Explanation
Flow<T> is a cold stream — it starts emitting only when collected. It supports operators like map, filter, and flatMap for reactive-style programming.
Progress
50/100