easyKotlindefault and named argumentsSingle-choice MCQ
A function is fun connect(host: String, port: Int = 80, useTls: Boolean = false). You want to keep the default port but set useTls to true. Which call is valid?
fun connect(host: String, port: Int = 80, useTls: Boolean = false) { /* ... */ }