Showing posts with label python learning. Show all posts
Showing posts with label python learning. Show all posts

Python Quiz: Test Your Knowledge of Python in 18 Questions

Python Quiz: Test Your Knowledge of Python in 18 Questions

Python is one of the most popular programming languages in the world, known for its simplicity, versatility, and extensive library support. Whether you are a beginner learning Python or an experienced developer, testing your knowledge can help you solidify your understanding. This quiz consists of 21 questions ranging from basic to difficult. Each question is assigned points based on difficulty, summing up to a total of 25 points.

Why Take a Python Quiz?

Assessing your Python knowledge helps in several ways:

  • Identifies knowledge gaps and areas for improvement.
  • Prepares you for coding interviews and certification exams.
  • Reinforces concepts through application-based learning.
  • Boosts confidence and enhances problem-solving skills.

Quiz Questions

Answer the following questions to evaluate your Python skills. Keep track of your points and check the answer key at the end.

Python Quiz: Ordered by Difficulty

Instructions: Answer the questions below. Each question has a point value based on its difficulty level:

  • Easy – 1 point
  • Intermediate – 2 points
  • Advanced – 3 points

🟢 Easy Questions (1 Point Each)

  1. Which keyword is used to define a function in Python?

    A) func
    B) def
    C) define
    D) lambda

  2. What does the following expression return?

    bool([])

    A) True
    B) False
    C) None
    D) Error

  3. How do you create a list with values 1, 2, and 3?

    A) list(1,2,3)
    B) [1,2,3]
    C) (1,2,3)
    D) {1,2,3}

  4. What will be the output of this code?

    print("Python"[::-1])

    A) Python
    B) Nohtyp
    C) SyntaxError
    D) Reverse Error

  5. What is the output of the following Python code?

    print(type([]) is list)

    A) True
    B) False
    C) TypeError
    D) None

🟡 Intermediate Questions (2 Points Each)

  1. What will be the output of this code?

    print(bool("False"))

    A) True
    B) False
    C) SyntaxError
    D) TypeError

  2. What does is operator do?

    A) Checks equality
    B) Checks identity
    C) Compares memory locations
    D) Both B and C

  3. What data structure does a dictionary in Python resemble?

    A) List
    B) Tuple
    C) HashMap
    D) Array

  4. Which of the following methods removes an item from a list?

    A) pop()
    B) remove()
    C) discard()
    D) Both A and B

  5. What will be the output of the following?

    print(2 ** 3 ** 2)

    A) 512
    B) 64
    C) 9
    D) 256

🔴 Advanced Questions (3 Points Each)

  1. Which of the following is an immutable data type?

    A) List
    B) Set
    C) Dictionary
    D) Tuple

  2. What is the result of this expression?

    print(5//2)

    A) 2.5
    B) 2
    C) 3
    D) Error

  3. What does lambda function return?

    A) A function object
    B) A string
    C) An integer
    D) None


Also see our related posts linked below!


✅ Answer Key

Q#AnswerPoints
1B1
2B1
3B1
4B1
5A1
6A2
7D2
8C2
9D2
10A2
16D3
17B3
18A3

📊 Grading Scale (Total: 24 Points)

  • 21–24: 🎉 You are a Python Genius! – Exceptional mastery of Python. Keep challenging yourself with more complex problems!
  • 17–20: 🌟 Great Work! – You have a strong understanding of Python. Keep up the momentum!
  • 13–16: 👍 Solid Effort! – You are getting better! Keep practicing to strengthen your skills.
  • 9–12: 🚀 You are getting started! – Good work! Review concepts and try again.
  • Below 9: 💡 Every expert was once a beginner! – Do not give up! Python takes practice. Keep learning!

Related Posts

Great Scientists Series

Great Innovators Series

References

Python Official Documentation

Real Python - Learning Resources

W3Schools Python Guide

GeeksforGeeks Python

Stack Overflow Python Questions



Welcome to Lexicon Labs

Welcome to Lexicon Labs

We are dedicated to creating and delivering high-quality content that caters to audiences of all ages. Whether you are here to learn, discov...