Join Now
Home Aptitude Reasoning DI VA GK CA CA Hindi Quiz Placements
What is the output of the following Kotlin code?
fun main() { val nums = arrayOf(1, 2, 3, 4, 5) val result = nums.any { it % 2 == 0 } println(result)}
1
0
2
Compilation error
fun main() { var i = 0 while (i < 5) { println("Hello, world!") i++ }}
Runtime error
Hello, world!
Hello, world! (printed 5 times)
fun main() { val num1 = 10 val num2 = 20 val result = if (num1 > num2) "num1 is greater than num2" else "num2 is greater than num1" println(result)}
num1 is greater than num2
num2 is greater than num1
Both num1 and num2 are equal
fun main() { val str = "hello, world" val result = str.split(" ") println(result)}
["hello,", "world"]
[hello,, world]
[hello, world]
fun main() { val nums = arrayOf(1, 2, 3, 4, 5) val result = nums.min() println(result)}
5
null
fun main() { val nums = arrayOf(1, 2, 3, 4, 5) val result = nums.last { it % 2 == 0 } println(result)}
4
fun main() { val nums = arrayOf(1, 2, 3, 4, 5) val result = nums.all { it % 2 == 0 } println(result)}
fun main() { val str = "hello, world" val result = str.filter { it.isLetter() } println(result)}
helloworld
hello,world
hello world
fun main() { val nums = arrayOf(1, 2, 3, 4, 5) val result = nums.find { it % 2 == 0 } println(result)}
fun main() { val nums = arrayOf(1, 2, 3, 4, 5) val result = nums.count { it % 2 == 0 } println(result)}
3