Tell about the hierarchy of collections in Java.
Java
-- There are tables with the following structure Employee id (PK) name salary dep_id(FK department.id) Department id (PK) name -- write a query that returns a list of all department names with the maximum salary in each department select d.name, MAX(e.salary) from Department d left join Employee e on e.dep_id = d.id group by d.name
What is the contract between equals and hashCode?
What microservice architecture patterns do you know?
Are we talking about metadata or transactional data when optimizing objects?
What is the difference between checked and unchecked exceptions? When should RuntimeException be used?
Can you name alternative ways to implement thread synchronization similar to synchronized?
Have you had experience working with a non-standard WeakReference class (or similar)?
Who prepared such configurations, as it was arranged in your team?
The client is trying to withdraw funds that are no longer available (fraud). What will happen on the developer's side?
What problems can arise when returning a JPA entity from a repository and how to avoid them?
Можно ли заменить right join на left join, изменяя порядок таблиц в SQL-запросе?
How will the reading of topics and partitions be distributed among Processing Service instances (scaling)?
Task: Given two lists, output the elements of the first list that are not in the second. Write a solution in Java.
What is @ComponentScan used for?
What is gRPC and what are its advantages?
Have you had leadership experience?
Is it possible to use volatile for a long variable and in what scenarios is it safe?
Tell about your work experience
Does Spring Security generate a 404 error on its own?