Does Kotlin support both Explicit conversion and Implicit conversions?
How does string interpolation work in Kotlin? Explain with a code snippet?
How many types of constructors are there ? What are they ?
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 ?