Multiple choice technology programming languages

we can not override a synchronized method as non-synchronized method.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In Java, the synchronized modifier is not part of a method's signature. This means a subclass can override a synchronized method and choose whether to keep or remove the synchronized keyword. The synchronization is an implementation detail, not a contract that must be preserved.