//Task condition //Write code that will output the response codes for HTTP requests to two URLs //the main page of Google and the main page of shtrafovnet.ru) //Requests should be made in parallel.
Embedded / IoT
What is Spring Proxy and why does it not create a wrapper around private methods?
// What will the following program output and how long will it run? package main import ( "fmt" "time" ) const numRequests = 10000 var count int func networkRequest() { time.Sleep(time.Millisecond) // Emulating a network request. count++ } func main() { for i := 0; i < numRequests; i++ { networkRequest() } fmt.Println(count) }
Wildcard import (import java.io.*) — what do you think about this?
Describe a specific case of PostgreSQL optimization with chunking: what was before and what changed after?
Реализуйте highload RPC ручку /weather с нагрузкой 10k RPS, где функция aiWeatherForecast() работает ~1 секунду
What is the insertion complexity of ArrayList?
What is at-least-once and exactly-once delivery? How do they differ and what are their pros and cons?
Have you worked with clean architecture and Domain-Driven Design?
What task do you remember the most from those you have performed?
What is a lambda expression?
Which level of task detail do you prefer — detailed documentation or minimal description?
If Kafka crashes, what happens to event sending?
// What will the following program output and how long will it run? package main import ( "fmt" "time" ) const numRequests = 10_000 var count int func networkRequest() { time.Sleep(time.Millisecond) // Emulating a network request. count++ } func main() { for i := 0; i < numRequests; i++ { networkRequest() } fmt.Println(count) // 10_000 }
What is the difference between EXPLAIN and EXPLAIN ANALYZE commands in PostgreSQL?
What would you do if the service started responding in 3 seconds instead of 100 milliseconds?
Part related to idempotency — how did it come about? Was it not formulated in the requirements?
What was used as the idempotency key?
Briefly tell about your last project: responsibilities, tech stack, what you did
What is TCMalloc?