Java
How can you modify an automatically generated SQL query within a Spring application?
Explain the role of component P in the CAP theorem and its impact on distributed database systems.
How does the division and simultaneous execution of tasks on CPU cores occur?
Can you explain what happens in postfix increment operations?
What was the main focus of your last project and what was implemented in it?
Can you list programming languages that run on JVM?
Can you name the main intermediate operations used for data processing or in streams?
On which application server does Spring WebFlux run? Why not Tomcat?
What is a skill and how does it differ from a sub-agent?
Tell us about your last workplaces and current project.
Why are you leaving your current job and what are you looking for?
How do you ensure atomicity of operations when interacting with microservices?.
How to make a class immutable?
What is the concept of calling a method inside a class in object-oriented programming?
Do you have experience connecting and interacting with various services in a system?
What ensures the absence of conflicts between consumer groups when processing a single message in a message consumption system?
What is a lambda expression and a functional interface?
How did you implement database schema migration when moving between different staging environments in your last project?
```java import java.util.ArrayList; import java.util.List; public class StreamTest { public static void main(String[] args) { List<String> names = new ArrayList<>(); names.add("Ivan"); names.add("Max"); names.add("Alex"); names.stream().forEach(name -> { System.out.println(name); names.add(name + " the Great"); }); System.out.println(names); } } ```