Multiple choice technology programming languages

Key word "transient" is used so that the state of the object is not saved... (T/F)

  1. True

  2. False

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

The 'transient' keyword in Java indicates that a field should not be serialized when the object is converted to a byte stream. This is commonly used for sensitive data like passwords or cached values that can be recreated. The claimed answer True is correct.