Why might a server respond to ping but be unavailable over TCP/UDP, for example, via HTTP or FTP?
Python
Challenges of microservices architecture: data consistency, distributed transactions, API versioning.
Why do FastAPI's synchronous handlers execute in parallel in 5 seconds instead of 10?
What tools can be used to determine the type of a variable in Python?
How is the uniqueness of elements ensured in a set collection?
What is the significance of the term facilitation in project management?
Which operator in Python provides automatic resource management using context managers?
What are the features of the gather function in the asyncio library and what are its advantages in organizing asynchronous operations?
What disadvantages can be identified in index structures in databases?
Can you tell about your development experience using JavaScript?
What are the main elements and modules used in creating deep learning systems?
How does the concept of a distributed monolith arise in system architecture?
Have you participated in helping other team members with their tasks?
Can you briefly explain the concept of Agile and its main principles?
Can you explain what Docker technology is and how it works?
What criteria allow classifying a developer as middle level?
How are private variables and methods declared inside a class in Python?
# 3. Write a simple decorator that measures the execution time of a function # 4. Given: two tables # CREATE TABLE departments ( # id SERIAL PRIMARY KEY, # name VARCHAR(100) NOT NULL # ); # CREATE TABLE employees ( # id SERIAL PRIMARY KEY, # name VARCHAR(100) NOT NULL, # department_id INT NOT NULL REFERENCES departments(id), # salary NUMERIC(10,2) NOT NULL # ); Task: # Write a query that outputs department names and their average salary, but only for departments where the average salary is higher # than the average salary across all employees in the company. Sort the result by descending average salary.
How does a virtual machine differ from a Docker container?
Explain the working principle of binary search algorithm and its main characteristics.