Voting will close on 31st August 11:59pm for Medial’s Startup Showcase (August 2024 edition). Go vote for your favourites so that they can come up in top 10 and stand a chance to win! 🥳
Results will be announced on 1st September! 🔥🚀❤️
Everyone is happy with overall result of 2024 elections result !!
3 replies5 likes
Yasir Alam
Stealth • 8m
Question: What is the output of the following Kotlin code snippet?
fun main() {
val list = mutableListOf(1, 2, 3, 4, 5)
val result = list.fold(5) { acc, num -> acc * num }
println(result)
}