What other programming languages do you know?
Golang
Why did you decide to leave your current job?
Tell about your work on a project at Wildberries — what is the workflow, what are your responsibilities?
Tell about your project in CloudPay: what you did, what you were responsible for, how complex the tasks were?
Tell about your experience working with databases — besides ClickHouse, what other databases and how deep?
What exactly did you do with Postgres — queries, indexes?
What is defer? What will the following code output? ```go type X struct { V int } func (x X) S() { fmt.Println(x.V) } func main() { x := X{123} defer x.S() x.V = 456 } ```
How are things with observability, what can you tell?
Tell about your education and path into development. Did you receive a non-profile education?
What did you work with most often? What technologies did you use?
How active is the search? Are there already offers or final stages?
What happens when adding elements to a map and what is evacuation?
Why do you want to leave your current company?
1. Display unique combinations of user and product id for all purchases made by users before they were banned. Sort first by user name, then by SKU. 2. Find users who made purchases totaling more than 5000 rubles. Display their id, first name, last name, and total purchase amount.
A system for posting vacancies on multiple platforms with response aggregation — how to architect it at a high level?
What are your financial expectations?
Write a function code that merges N channels. All input streams are redirected into one channel. func merge(cs ...<-chan int) <-chan int { ... }
Is it possible to use a column in SELECT if we do not group by it in GROUP BY?
How is the map structured in Go in general terms?
How many years of commercial experience do you have and how many years have you been writing in Go?