What data and structures were used in the MongoDB database in your last project?
Java
Where have you used the @Transactional annotation?
What are the advantages and disadvantages of using CopyOnWriteArrayList in Java?.
Explain the concept of a wrapper class and its purpose in object-oriented programming.
Task #3 What will be the result in Session #1? Connecting to the database with table t with the line INSERT INTO t(id,val) VALUES (3,'c'); COMMIT; Session #1 ------------------------ psql> BEGIN TRANSACTION ISOLATION LEVEL REPEATABLE READ; -- T1 ------------------------ Session #2 ------------------------ psql(T2)> UPDATE t SET val='c2' WHERE id=3; COMMIT; ------------------------ Session #1 ------------------------ psql(T1)> SELECT id,val FROM t WHERE id=3 ------------------------
What are the advantages and disadvantages of using CompletableFuture for handling asynchronous tasks in Java?
What methods can you use to synchronize access to collections in a multithreaded environment?
Have you configured and optimized databases in your projects?
What methods can be used to split a monolithic application into more modules or services?
Have you created your own application or project using the Python programming language?
How can you integrate the latest updates from the main development branch into a separate feature branch in Git?
Where inside the method is an Integer variable stored?
How does the use of the lock() method differ from the async() method when managing asynchrony and locks in programming?
Can you tell about your main responsibilities and tasks in your last project?
Is it recommended to strive to minimize downtime during I/O operations in multithreaded applications?
What is the role of the @PostConstruct annotation in the lifecycle of a Java EE or Spring component?
What are the basic classes and interfaces for working with threads in Java?
How can a class be linked to a database in Java?
Where in the application would you choose to store the database connection URL?
How do you implement error and exception handling in Java applications?