Sobes.tech

Embedded / IoT

What is Docker, Docker Image, Docker Compose?

Intern
258

Tell me about working with PostgreSQL optimization — what did you do with indexes and transactions?

258

Is the map stream-safe in Go?

Intern
253

What volumes of data were ingested into ClickHouse? From where? What was the RPS for reading and writing, including in batches?

Intern
251

Tell me about the Go scheduler (MPG model, work stealing, handoff, etc.)

251

What is Kafka and how does it differ from RabbitMQ?

Intern
251

What is the difference between pessimistic and optimistic locking in PostgreSQL?

248

Describe the idempotency mechanism of debit operations: where was the key stored, what was the TTL, how were collisions handled?

247

Tell me about the CAP theorem: what is it about, examples of databases?

Intern
246

Tell me, are there 6 Go developers, 2 front-end developers, 2 QA, and a PM in your team?

244

What is the difference between Dependency Injection and Dependency Inversion?

Intern
243

Tell about your work experience.

Middle+
240

//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.

238

// 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) }

236
/9