Question:Which of the following illustrates correct synchronization syntax?
A public synchronized void Process(void){}
B public void Process(){ synchronized(this){ } }
C public void synchronized Process(){}
D public synchronized void Process(){}
+ AnswerD
+ Report