Skip to content

Python Programming Practice Exam

Test yourself under real exam conditions: 50 timed questions, 60 on the clock, pass mark 70%%. Instant score with a full review of everything you got wrong. Free — no account needed.

📝 50 questions · ⏱ 60 minutes · 🎯 Pass mark 70% · 🆓 Free, no signup

Exam details

  • 50 questions drawn from 50 cards
  • Countdown timer — auto-submits when time runs out
  • Pass mark 70% (real certification threshold)
  • Full review of wrong answers at the end
  • No signup required — save your score with a free account

Sample Questions

5 shown

What is Python?

Show ▼

Python is a high-level, interpreted programming language known for its readability and simplicity. It supports multiple paradigms including procedural, object-oriented, and functional programming.

Who created Python and when?

Show ▼

Guido van Rossum created Python, with the first version released in 1991. It was named after the British comedy series Monty Python.

What are the key features of Python?

Show ▼

Python features dynamic typing, automatic memory management, extensive standard library, and cross-platform compatibility. It emphasizes code readability with significant whitespace.

How do you run a Python script from the command line?

Show ▼

Save the code in a file with .py extension, then run python filename.py in the terminal. Use python3 if Python 2 is also installed.

What is the Python REPL?

Show ▼

REPL stands for Read-Eval-Print Loop, an interactive shell for executing Python code line-by-line. Access it by typing python in the terminal.

🎯 Take the Python Programming Practice Exam