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
whats is statement and procedure
Explain how will the struts know which action class to call when you submit a form?
What is the purpose of the notify() method?
What is the difference between a static and a non-static inner class?
Difference between new operator and class.forname().newinstance()?
What restrictions are placed on the location of a package statement within a source code file?
Why does the tag url-encode javascript and mailto links?
What is the relationship between the canvas class and the graphics class?
What is Remote Server?
What is metaspace?
Explain the advantages and disadvantages of detached objects.
Why do threads block on i/o?
How are the elements of a cardlayout organized?
What is colon_pkg_prefixes and what is its use?
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!