Home Tutorial Java Scjp Part11 SCJP Module-11 Question-5

 
 

SCJP Module-11 Question-5
Posted on: July 20, 2010 at 12:00 AM
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)

Related Tags for SCJP Module-11 Question-5:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.