Python
Are you comfortable with interviews in your specialization — backend development?
Which language would you choose for a technical interview?
How did the system work before transitioning to event-driven/Kafka: was it REST API on FastAPI?
What is your highest level of education confirmed by a diploma?
Have you been a team or project leader in your current or previous experience?
Is [name] located in a specific location?
def is_palindrome(string_to_check: str) -> bool: left, right = 0, len(string_to_check) while left < right: while left < right and not string_to_check[left]. left += 1 while left < right and not string_to_check[right] right -= 1
obj = {True: 1, 1: 2, 1.0: 3, "1": 4} print(obj) # {True: 3, "1": 4}
What are your expectations regarding compensation?
What is your professional specialization?
# Write code for a cache function. It should # remember what the decorated function returned, and return the remembered # value on subsequent calls with the same arguments. # # Assume all arguments are hashable. # Use only the Python standard library.
How to deal with table bloat in PostgreSQL?
Do you prefer leading or replacing the team lead?
What are the disadvantages of asynchronous code?
When should you use threads and when processes?
What parameters of LLM can be used to tune the quality and nature of the response?
Do you know anyone who works at the company?
How to avoid cache collision between different functions that are called with the same arguments, for example add(2, 3) and multiply(2, 3)?
What is a palindrome?
Was remote work format offered at Mediasoft?