Test: Rozbudowane instrukcje warunkowe — if, elif, else, operatory logiczne i warunek skrócony
Learning Mode
Progress:
8 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
8
Dla x = 7, który zestaw komunikatów zostanie wypisany przez poniższy fragment?
```python
x = 7
if x % 2 == 0 and x > 10:
print("parzyste i > 10")
else:
print("nie spełnia obu warunków")
if x < 5 or x > 6:
print("x < 5 lub x > 6")
if not (x % 2 == 0):
print("x jest nieparzyste")
```
Select one answer.