How many types of syncronization?

Answers were Sorted based on User's Feedback



How many types of syncronization?..

Answer / sitaram

There are three type Synchronization.
1.Class level Synchronization:

Class A{

static Syn...(){
}
}

2. Block level Synchronization:

class A{

Synchronized{
}

}

3.Method level Synchronization:

class A{

Synchronize method(){
}
}

Is This Answer Correct ?    5 Yes 1 No

How many types of syncronization?..

Answer / harishchand

Three type of synchronization
1) Class level synchronization.
2) Block level synchronization.
3) Method level synchronization

Is This Answer Correct ?    3 Yes 1 No

Post New Answer

More Core Java Interview Questions

What is run time allocation?

0 Answers   Fidelity,


Is void a data type in java?

0 Answers  


How do you get length in java?

0 Answers  


What are different data structures in java?

0 Answers  


why an outer class cannot be declared as private?

1 Answers  






Explain super keyword in java.

0 Answers  


What are different types of inner classes ?

0 Answers  


Which sorting algorithm is best in java?

0 Answers  


What is meant by final class?

0 Answers  


why we cannot declare static variable inside a static method

4 Answers  


How can a gui component handle its own events in java programming?

0 Answers  


What is the exact difference in between Unicast and Multicast object? Where will it be used?

0 Answers  


Categories