How will you scale the system?
Python Backend Engineer Interview Questions
157 python backend engineer interview questions shared by candidates
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
¿Como optimizarías las queries a base de datos?
Difference between a SQL and a columnar db
I won't specify with the respect to the company's hiring processes. The 2 questions were "easy". After multiple requests to specify the context of the question (because based on that your answer can vary a lot), got nothing back but the repeated same question without any more details.
System design: design a product for manufacturing managers to track shipments of materials from around the world.
Cod assignment: They asked me to create a web server with three math APIs(e.g. Fibonacci, ...) and to log the runtime of APIs, they gave me a review about my code, that the logger that I implemented is not efficient and so simple, but the point is that when I received the code assignment, I asked them about how do they need the logger to be implemented, is it OK to just write a simple custom logger or there are some other expectations that need to be satisfied, and they told me that I can write a custom one
How you would design registration and authorization in a game which open for all world
Oops concept is the most asked interview question
Did you work with high load projects before
Viewing 21 - 30 interview questions