What is the Elvis Operator?
Does Kotlin have the static keyword? How to create static methods in Kotlin?
What is the difference between val and var?
What is the difference between Return Type Unit and Return Type Nothing in Kotlin?
What kinds of programming does Kotlin support ?
Which is the default modifier for a method, variable, class?
What is init block in Kotlin?
How are Primary Constructors different from Secondary Constructors ?
What is the type of arguments inside a constructor? Why do you think they are val unless explicitly set to var?
How is a function declared? Why are Kotlin functions known as top-level functions?
What is the type of the following Array?, val arr = arrayOf(1, 2, 3);
How do you realize Ternary Conditional Operator in Kotlin ?
What is lateinit modifier?
What is the difference between == and === operators in Kotlin?
Does Kotlin support primitive datatypes as like in Java?