{% seo_meta title="Python Basics Quiz β€” Play" description="Take the Python Basics Quiz quiz on BSTFN. Test your knowledge and earn a certificate." keywords="Python Basics Quiz, quiz, online test" %}
←
Python Basics Quiz
Score: 0/5
⏱ 120:00
Question 1 of 5
Q1
What is the output of print(type([]))?
πŸ“– Explanation: [] is a list so type([]) returns <class 'list'>
Q2
Which keyword defines a function in Python?
πŸ“– Explanation: The def keyword is used to define functions.
Q3
What does len('hello') return?
πŸ“– Explanation: hello has 5 characters so len returns 5.
Q4
Python is a compiled language.
πŸ“– Explanation: Python is interpreted not compiled.
Q5
Which creates a dictionary in Python?
πŸ“– Explanation: Curly braces with key:value pairs create a dict.