SCJP Module-11 Question-5


 

SCJP Module-11 Question-5

The Sample program given below will test your understanding about the transient variable in Java.

The Sample program given below will test your understanding about the transient variable in Java.

Consider a sample code:

1    import java.io.*;
     
2    class Student implements Serializable {
3  
4    public Integer rollno;
5    public String address;
6    public transient int ccode;
}

What will be the effect of line no-6 ? Choose the correct option?

(A) A transient variable is a variable that are not serialized.
(B) A transient variable is a variable that are only serialized.

Answer:

(A)

Ads