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

whats is statement and procedure

1836


Explain how will the struts know which action class to call when you submit a form?

731


What is the purpose of the notify() method?

838


What is the difference between a static and a non-static inner class?

862


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

843


What restrictions are placed on the location of a package statement within a source code file?

870


Why does the tag url-encode javascript and mailto links?

812


What is the relationship between the canvas class and the graphics class?

780


What is Remote Server?

1903


What is metaspace?

782


Explain the advantages and disadvantages of detached objects.

805


Why do threads block on i/o?

945


How are the elements of a cardlayout organized?

812


What is colon_pkg_prefixes and what is its use?

2228


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!

1614