we have two threads..both the threads are reading the
data.. is there any need of synchronization
there?...justify it?

Answers were Sorted based on User's Feedback



we have two threads..both the threads are reading the data.. is there any need of synchronization ..

Answer / ysr

It depends upon the data.
where the data is chngable by threads at that time we need
to apply the synchronization.
if the data is purly static data no need to protect the
databy using synchronization. why because if we apply
(synchronization) each and every time there is a
performance degradation is there.
Time factor(it will take more time)

Is This Answer Correct ?    29 Yes 0 No

we have two threads..both the threads are reading the data.. is there any need of synchronization ..

Answer / sridhar

In this case synchronization is not requied because u r not
going to change the data.
U can use synchronization but performence will decrease.

Is This Answer Correct ?    16 Yes 0 No

we have two threads..both the threads are reading the data.. is there any need of synchronization ..

Answer / babu

sychronization is used to execute only one thread or one
block ata time.if your not declare sychronized in the method
there is chance to execute the mixed data i.e.; to threads
start at atime.

Is This Answer Correct ?    3 Yes 0 No

we have two threads..both the threads are reading the data.. is there any need of synchronization ..

Answer / ranjan

synchronization is necessary in threads
problem.synchronization means at a time only one thread can
access it.If it is not done then one thread will read the
resource & other will try to update it.It will create a
problem.

Is This Answer Correct ?    3 Yes 11 No

Post New Answer

More Core Java Interview Questions

What is matcher in java?

0 Answers  


when everything can be done by static block then why do we use main method?.

2 Answers  


if arraylist size is increased from initial size what is the size of arraylist...suppose initial is 100 , if i add 101 element what is the size...

10 Answers  


What are event-delegation model and event-inheritance model? Which is best?

1 Answers  


Give the hierarchy of inputstream and outputstream classes.

0 Answers  






Can we create object of inner class in java?

0 Answers  


Is stringwriter thread safe?

0 Answers  


Using callable statement how can you pass out parameters, explain with example?

0 Answers  


How many types of memory areas are allocated by jvm?

0 Answers  


What is Distributed Application and what is its usage?

2 Answers  


Java run-time system generates What class of exceptions?

2 Answers   TCS,


Explain the significance of class loaders in bootstrap?

0 Answers  


Categories