Exercises for the chapter “Data types in Kotlin”

Task #1 Answer the following questions: Does Kotlin have dynamic or static typing? Kotlin is a statically typed language. What does static typing mean and what advantages does it offer? Static typing means that each variable is assigned a specific data type at compile time and cannot be changed at runtime. What two parameters are determined by data type in Kotlin? The data type determines

Read more