Python
What objects in Python can be used as dictionary keys?
How to make data collection idempotent if 10 identical requests arrive simultaneously?
How much code do you write yourself and how much does the agent generate?
Have you ever had cases where you implemented such an architectural chain from scratch?
What integrations have you implemented and through what interaction methods did you work?
Can a modular monolith be transformed into microservices and vice versa?
Why did you choose this particular method of prompting LLM and what style do you base your query on?
How would you control the behavior of a coding agent?
Have you ever configured a feedback loop for a coding agent?
How do you approach implementing a feature if the documentation is technically imperfect and part of the business logic is not obvious?
What is clean architecture and what does it look like?
How to organize work if an external integration allows only 1 request per second and 10 requests come to you?
How does a microservice differ from a modular monolith? What are their advantages and disadvantages?
What happens in the open configuration file?
What architecture was used in your last project?
What benefits and risks do you see in vibe coding?
What problems did you encounter when working with SQLAlchemy?
# Task. Given a list, reverse it #z = [1, 2, 3, 4, 5] # The result should be the list [5, 4, 3, 2, 1] # You need to implement a function that reverses the list. # Built-in methods (z[::-1], z.reverse(), reversed(z)) cannot be used. # You cannot create new lists. It is recommended to use a for loop def reverse(lst: list) -> list: ...
What is REST API?
Do you take initiative if a system analyst proposes a suboptimal solution?