a thread can call a non-synchornized instance method of an Object when a synchronized method is being executed code example
Example: synchronized block java
public class MyCounter {
private int count = 0;
public synchronized void add(int value){
this.count += value;
}
}