what is mean by synchronization?
Answer Posted / uma
synchronized means that in a multiple threaded
environment,a synchronized object does not let two threads
access the same time.this means that one thread cant be
reading while another updates it.the second thread will
instead wait until the first is done.the overhead is
speed,but the advantage is guaranteed consistency of data..
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What does business logic mean?
Explain jvm, jre, and jdk?
What is a nested class?
What is the structure of java?
How we create object in copy constructor?
Can a class extends itself in java?
What two classes are used to read data only?
Is there any difference between nested classes and inner classes?
What does system out println () do?
What does s mean in regex?
What is ‘is-a ‘ relationship in java?
What is ++ a in java?
What is private protected in java?
What is meant by javabeans?
What is the difference between inner class and nested class?