Answer Posted / 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 |
Post New Answer View All Answers
What is meant by class and object in java?
What is the use of toarray () in java?
Is it possible to use string in the switch case?
Can we convert stringbuilder to string in java?
What do you understand by overloading and overriding in java?
What is ascii code?
What is the range of a character variable?
What is pass by value?
Which programming language is most secure?
Can a final variable be null?
How concurrent hashmap works?
Is java 11 paid version?
Will minecraft java be discontinued?
Is arraylist ordered in java?
what is the difference between a threads start() and run() methods? : Java thread