How efficiently you can do memory management and optimization in Python?
Python Developer Interviews
Python Developer Interview Questions
"Python developers are responsible for developing code to build products using the python programming language. In an interview context, expect to be quizzed on your technical skills through different kinds of computing problems or brainteasers. The specific questions you are asked will depend on what type of programming position you are looking for. Try researching a specific discipline such as web development, application development, or system development."
6,392 python developer interview questions shared by candidates
What is the difference between view and function?
Decorators generators, context managers, oops concepts, iterators, and in first two round there were few coding questions as well based on array string and binary search
Python internals and data structures.
What is a dictionary, lambda funciton ?
Classify the given text "just like that". The was no further definition given for the "just like that" process.
The question was to write a generic API to accept the SQL queries data like table name, select columns, ordering using a column name, applying aggregation to it and filtering the data with multiple "and" and "or" conditions. Accept the request from API and convert it into the SQL query in the backened and give the response back.
They asked about the Django framework, AWS services, system design, and various optimization techniques.
what I do in my current organization? the next set of questions were related to python and computer science concepts. 1. what is GIL(global interpreter lock) in python. 2. what is deep copy and shallow copy with example on an online editor 3. which code works faster? 1. with open("input.txt") as f: data = f.readlines() for line in data: process(line) -------------------------------- 2. with open("input.txt") as f: for line in f: process(line) 4. iterator,generator,event loop 5. set ,dict tuple 6. mutable and immutable what are these data types 7. what is lazy eval 8. concurrency vs parallelism 9. memory allocation in python
Basic python coding related questions, refer geeks for geeks site
Viewing 861 - 870 interview questions