What has changed in HTTP/2 compared to HTTP/1.1?
d. Records only about clients and orders if clients have orders select * from Clients inner join Orders on Clients.ClientId = Orders.ClientId g. Clients with more than 10 orders select * from Clients inner join Orders on Clients.ClientId = Orders.ClientId
How is the yield mechanism implemented internally?
Are you more of a backend developer or a frontend developer?
Which REST API HTTP methods are idempotent? Is it possible to send requests/data in GET and what are the limitations? How do the 4xx and 5xx status code families differ?
Where does work communication and interaction with the team take place?
What is the computational complexity of the duplicate removal task? Why? How does HashSet work internally?
How are you doing with Docker, and what is your experience using it?
What is your experience with PostgreSQL?
function foo(a) { console.log(arguments.length); } foo(1, 2, 3);
What is the problem with multiple string concatenations in a loop and what can replace it?
Can you use await in a synchronous method?
Can you manually trigger garbage collection? How many generations does GC have and what other memory areas do you know?
Do you understand JOIN, grouping, and aggregate functions in SQL?
Have you worked with IdentityServer?
What patterns for distributed transactions in microservices do you know?
What will the C# code with enum: First = 15, Second, Third = 54 output?
Что такое Redis и для чего его обычно используют?
How to wait for two asynchronous operations to complete? Is it possible to set a timeout for waiting?
What properties should a method or class have to be conveniently covered by unit tests?