Analyst Integration Question:
Download Questions PDF

What is a critical section?

Answer:

critical section is the part of a code, which is very important and in multi-threading must be exclusively modified by any thread. Semaphore or mutex is used to protect critical section. In Java you can use synchronized keyword or ReentrantLock to protect a critical section.

Download Integration Programmer Interview Questions And Answers PDF

Previous QuestionNext Question
What is difference between DOM and SAX parser?What is Immutable class mean?