Kotlin - Operators and Expressions
You want to check if a user is logged in and has admin rights before allowing access. Which Kotlin condition correctly uses logical operators for this?
val loggedIn = true val isAdmin = false // Choose the correct if condition
