Sobes.tech

Embedded / IoT

What tasks have you solved and what tasks would you like to solve?

Middle+
319

// What will the following code output and why? package main import "fmt" type Person struct { Name string } func changeName(person *Person) { person.Name = "Alice" } func main() { person := &Person{ Name: "Bob", } fmt.Println(person.Name) // Bob changeName(person) fmt.Println(person.Name) // Bob }

316

What is the difference between relational and non-relational databases?

Intern
312

Example DIP ```go package main import "fmt" // Interface for data storage abstraction type DataStorage interface { Save(data string) } // Low-level module for file data storage ```

Intern
305

Tell me about your responsibilities. Have you managed to work on system design? Do you write unit tests?

292

Will the Spring context rise or fall if there is an interface with two implementations and a bean into which this interface is injected without specifications?

285

What is Docker, Docker Image, Docker Compose?

Intern
277

Why is volatile needed if synchronized exists? Synchronized covers all cases of volatile.

272
/9