0% found this document useful (0 votes)
141 views1 page

Python Developer Interview Guide

This document contains 25 questions about various Python programming concepts including: 1. The difference between .py and .pyc files and how Python is interpreted. 2. How arguments are passed and iterators, files, and classes work in Python. 3. Key pandas concepts such as dataframes, combining data, and handling missing values. 4. Common modules and the difference between packages and modules.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
141 views1 page

Python Developer Interview Guide

This document contains 25 questions about various Python programming concepts including: 1. The difference between .py and .pyc files and how Python is interpreted. 2. How arguments are passed and iterators, files, and classes work in Python. 3. Key pandas concepts such as dataframes, combining data, and handling missing values. 4. Common modules and the difference between packages and modules.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

PYTHON DEVELOPER 2

1. What is the difference between .py and .pyc files?


2. How Python is interpreted?
3. How are arguments passed by value or by reference in python?
4. What are iterators in Python?
5. Explain how to delete a file in Python?
6. Explain split() and join() functions in Python?
7. What does *args and **kwargs mean?
8. What are negative indexes and why are they used?
9. How do you create a class in Python?
10. How does inheritance work in python? Explain it with an example.
11. How do you access parent members in the child class?
12. Are access specifiers used in python?
13. Is it possible to call parent class without its instance creation?
14. How is an empty class created in python?
15. Differentiate between new and override modifiers.
16. Why is finalize used?
17. What is init method in python?
18. How will you check if a class is a child of another class?
19. What do you know about pandas?
20. Define pandas dataframe.
21. How will you combine different pandas dataframes?
22. How will you identify and deal with missing values in a dataframe?
23. How will you delete indices, rows and columns from a dataframe?
24. Differentiate between a package and a module in python.
25. What are some of the most commonly used built-in modules in
Python?

You might also like