What is multithread synchronizing ?

Answer Posted / neha

synchronization of processes, and synchronization of
data.Process synchronization refers to the idea that
multiple processes are to join up or handshake at a certain
point, so as to reach an agreement or commit to a certain
sequence of action.Data synchronization refers to the idea
of keeping multiple copies of a dataset in coherence with
one another, or to maintain data integrity.

more detail answer at
http://www.edugoing.com/qna/index.php?qa=94&qa_1=what-is-synchronization-in-respect-to-multi-threading
i think it will help you

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why a component architecture for the java platform?

578


Difference between new operator and class.forname().newinstance()?

598


What value does read() return when it has reached the end of a file?

549


what are the activation groupworks?

1675


What state does a thread enter when it terminates its processing?

600






How will you pass parameters in RMI? Why do you serialize?

693


Why is string immutable in java?

577


Why are some of the class and element names counter-intuitive?

571


Why use a datasource when you can directly specify a connection details? (in a J2EE application)

3448


What is the purpose of the wait() method?

619


whats is mean by tiles in struts

1620


How to deploy Jar, War files in J2EE?

2169


What is re-entrant. Is session beans reentrant. Is entity beans reentrant?

578


What is bean? Where can it be used?

575


int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!

1362