How is parameter passing performed in SQL queries?
Java
How can you make an array returned via a getter unmodifiable from outside?
What is the lifecycle of a bean in Spring?
On what criteria should a monolith be decomposed into microservices?
What does the SELECT operator in SQL generally look like?
Can you list the main components included in the Java Stream API?
Is the implementation of a hashCode method that always returns one correct?
What is idempotency and how can it be ensured?
Consider the possibility of using a linked list to add an element at the beginning of the list. In what cases is this justified?
@Data public class ClassA { int a; } public class ClassB extends ClassA { int b; @Override public boolean equals(Object obj) { //implementation } } @Data public class ClassA { int a; } public class ClassB extends ClassA { int b; @Override public boolean equals(Object obj) { //implementation if (this == obj) return true; if (!(obj instanceof ClassB)) return false; if (!super.equals(obj)) return false; } }
How do the concepts of axis flow and lightweight flow relate in the context of multithreading?
In what technological environment was your last project implemented?
What is the difference between @Bean and @Component annotations in Spring, and in what situations are they used?
What is a lambda expression and a functional interface?
How do the normal and lazy loading modes in JPA differ?
What enterprise resource management software is used in our project?
Can you tell about how you worked with data collections in your last project?
Can object-oriented programming be considered a universal approach to software development?
What components do atomic classes consist of and how are they implemented?
How does changing the key affect the structure and behavior of HashMap in Java?