Intermediate
Kotlin
Q81 / 100
What is the combine Flow operator?
Correct! Well done.
Incorrect.
The correct answer is B) Combines the latest values from multiple flows whenever any flow emits a new value
B
Correct Answer
Combines the latest values from multiple flows whenever any flow emits a new value
Explanation
combine(flow1, flow2) { a, b -> a + b } re-evaluates the transform whenever either flow1 or flow2 emits. Useful for reactive UI state combination.
Progress
81/100