Test: Quiz description (optional)
Learning Mode
Progress:
9 of 10
Quiz Preview Mode
You're taking this quiz in preview mode with real feedback! Experience how our detailed explanations help you learn. Your progress won't be saved permanently.
Question
9
Majac kod:
```javascript
let isLoggedIn = false;
let isAdmin = true;
if (!isLoggedIn) {
console.log("Użytkownik niezalogowany - dostęp ograniczony.");
} else if (isAdmin) {
console.log("Witaj, administratorze! Masz pełny dostęp.");
} else {
console.log("Witaj, zwykły użytkowniku. Masz ograniczony dostęp.");
}
```
Który komunikat zostanie wypisany?
Select one answer.