What is synchronization?


Synchronization is the mechanism that ensures that only one thread is accessed the resources at a time.



Explore posts in the same categories: Java Interview Questions, Operating System Interview Questions


BOOKMARK THIS : del.icio.us | Digg it | Furl | reddit |


Related Questions :

  • What is synchronization and why is it important?
  • With respect to multithreading, synchronization is the capability to control the access of multiple threads to shared resources. Without synchronization,...
  • What is synchronization and why is it important?
  • With respect to multithreading, synchronization is the capability to control the access of multiple threads to shared resources. Without synchronization,...
  • Describe synchronization in respect to multithreading.
  • With respect to multithreading, synchronization is the capability to control the access of multiple threads to shared resources. Without synchonization,...
  • What is better approach for enabling thread-safe servlets and JSPs? SingleThreadModel Interface or Synchronization?
  • Although the SingleThreadModel technique is easy to use, and works well for low volume sites, it does not scale well....
  • What’s a better approach for enabling thread-safe servlets and JSPs? SingleThreadModel Interface or Synchronization ?
  • Although the SingleThreadModel technique is easy to use, and works well for low volume sites, it does not scale well....
  • How to make application thread-safe ?
  • You should use the word synchronized to mark the critical section of code. You may also use other methods of...
  • What is transaction manager
  • Provides the services and management functions required to support transaction demarcation, transactional resource management, synchronization, and transaction context propagation....
  • How do you implement thread synchronization (Object.Wait, Notify,and CriticalSection) in C#?
  • You want the lock statement, which is the same as Monitor Enter/Exit: lock(obj) { // code } translates to: try { CriticalSection.Enter(obj); // code } finally { CriticalSection.Exit(obj); }...
  • What is Semaphore? What is deadlock?
  • Semaphore is a synchronization tool to solve critical-section problem, can be used to control access to the critical section for...
  • What is re-entrant. Is session beans reentrant. Is entity beans reentrant?
  • If we define the entity bean as being reentrant, multiple clients can connect to the Entity bean & execute methods...

    Comment:

    You must be logged in to post a comment.