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
Senior Backend Python Developer Interview Questions
12 senior backend python developer interview questions shared by candidates
Write a small library to manage the url shortening. The library will respect the following signature: shorten_url(long_url: str) -> str get_original_url(short_url: str) -> str
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
Do you have experience in communicating directly with customers?
What makes a developer count as senior?
Write a balance transfer service between two account in a concurrent environment. Draft test/example usage (part of the spec): ``` from_account = Account(...) to_account = Account(...) service = BalanceTransferService() service.transfer(from_account, to_account, amount) # assert ... ```
Do you know about decorators, generators and context managers in python?
How do linux kernel devices interconnect with each other?
Typical algorithmic questions such as arrays and trees related, a bit of code design. A pair programming session. Maybe not much related to architecture design.
Do you prefer well-described tasks, or can you manage with a lack of description?
Viewing 1 - 10 interview questions