Multiple choice

Which of the following statements is false about Synchronized and ThreadSafety?

  1. In multithreading, synchronized methods or statements used to fix dirty reading.

  2. In Java, all the legacy classes are threadsafe.

  3. Application consumes more time if it uses synchronized blocks.

  4. In Java, we use Synchronized modifier to make a block as thread safe.

  5. None of the above

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

All the 4 options are true.