Choose a topic to test your knowledge and improve your Kotlin (programming language) skills
Kotlin is developed by?
Which of following is used to handle null exceptions in Kotlin?
Which file extension is used to save Kotlin files.
All classes in Kotlin classes are by default?
What is correct way to create an arraylist in Kotlin?
6. What is an immutable variable?
Which of follwing targets currently not supported by Kotlin?
How to make a multi lined comment in Kotlin?
9. How do you get the length of a string in Kotlin?
Which of the followings constructors are available in Kotlin?
Which of the following extension methods are used in Kotlin?
There are two types of constructors in Kotlin which are-
Which of the following is not the basic data types in Kotlin?
Which of following option is used to handle null exceptions in Kotlin?
Kotlin was developed under the .......... license.
You have created an array to hold three strings. When you run the code bellow, the compiler displays an error. Why does the code fail? val names = arrayOf(3) names[3]= "Delta"
If a class has one or more secondary constructors, what must each of them do?
When you can omit constructor keyword from the primary constructor?
How many different kinds of constructors are available for kotlin classes?