Multiple choice technology web technology What are transient variables in java? Transient variables are variable that cannot be serialized. Transient variables are variable that can be serialized. Transient variables has no special feature None of the above Reveal answer Fill a bubble to check yourself A Correct answer Explanation The transient keyword in Java marks fields that should be skipped during serialization. When an object is serialized, transient fields are not written to the output stream and will have default values when deserialized.