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
Why does java not support operator overloading?
When is finally block not called?
Explain the hierarchy of java exception classes?
How do you bind variables?
What do you mean by aggregation?
Can we restart a dead thread in java?
What are streams in java 8?
Why is java called the platform independent programming language?
What are the supported platforms by java programming language?
What is a null point?
What is the difference between a field variable and a local variable?
What does n mean in java?
Explain reverse a linked list recursive java solution?
What is an iterator java?
Why are constructors used?