Sobes.tech

What other data structures do you know (queue, stack)? Why is a linked list convenient for implementing a queue? What is the asymptotic complexity of inserting an element into a queue based on an array and on a linked list?

196

What are your salary expectations? How do you feel about formalizing PТК?

196

Name design patterns from different categories (creational, structural, behavioral, parallel programming) and explain one favorite in detail.

195

Tell about your experience at Gazprom Neft.

195

When we program in Go and when we write in SQL, in which programming paradigms are we operating? Which paradigm corresponds to Go, and which to classical SQL?

195

package main import "fmt" func subis(is []int) []int { return append(is, 5) } func main() { is := []int{1, 2, 3, 4} subis(is[2:3]) fmt.Println(is) }

195

What is the asymptotic complexity of key search in a hash table and how is it achieved? How exactly does bucket addressing occur based on the hash of the key?

194

Write a function processBatch that splits an array of strings into batches of 10, saves each batch via the Saver interface, and upon success, sends a notification via the Notifier interface.

194

Tell about your most complex task — technically or business-wise.

193

What projects were at your last job?

193

Tell about the isolation levels of transactions in PostgreSQL.

192

How does the system handle an event where a delivery event arrives without all the necessary data?

192

When migrating from Postgres to ClickHouse for report generation — did you try optimizing Postgres first (indexes, etc.)?

192

What is the danger of passing a slice to a function? Is there a trick with arrays?

192

What is a race condition and how to avoid it?

191

Can you give an example of implementing the chain of responsibility in a classic RESTful service in Go?

191

A new nomenclature (new product) has appeared — should it appear in Redis?

191

Have you ever implemented a complex project from scratch?

191

What is the ratio of clicks to impressions called?

190

Do you know about database normalization, what is it?

190
/10