Java - Interview Questions and Answers on Transient keyword

Q1.  What are transient variables in java?

Ans. Transient variables are variable that cannot be serialized.

Q2.  What is the use of Transient Keyword ?

Ans. It in Java is used to indicate that a field should not be serialized.

Q3.  Which class elements are not persisted ?

Ans. Static and Transient.

Q4.  Variables of an interface are intrinsically ... 

 a. transient
 b. final
 c. public
 d. static

Ans. transient