What is the output of the following Kotlin program?
Which of the following is a valid variable name?
Kotlin is a ____________ programming language
What are the variables whose value cannot be changed called?
What will be the output of this block of code?
val best_movie = "Shawshank Redemption"
best_movie = "Dark Knight"
println(best_movie)
What will be the output of the following Kotlin code?
fun main(args : Array<String>) {
var bday = 15/8/1947
println("${bday + bday}")
}
How to read a line of input as a string without using the Scanner class from the Java standard library?
What will be the output of the following Kotlin program?
fun main(args: Array<String>) {
println("Abekus Is the best platform to learn");
}
What are sealed classes used for in programming?