what is transient variable?

Answers were Sorted based on User's Feedback



what is transient variable?..

Answer / devender

A variable that can't be serialized .

Is This Answer Correct ?    7 Yes 0 No

what is transient variable?..

Answer / p.a.v.k.prasad

Transient variable is an variable, that can't be stored in permanent(hard disk)
Ex:-
int a=10; // it is permenently stored in hard disk

transient String password; //it is not persisted

if u create a Student class and it contains Sno,SName,Marks;
u don't want to serilize the marks. then use Transient to that field.

In real time transient varibles are used banking application
because never stored account holder passwords.

Is This Answer Correct ?    4 Yes 0 No

what is transient variable?..

Answer / srinu

suppose A varible never participate in serilization process
that varible declared as a keyword transient.

Ex:- transient String password;

In real time transient varibles are used banking application
because never stored account holder passwords.

Is This Answer Correct ?    4 Yes 1 No

what is transient variable?..

Answer / prasad

Transient variable is a variable that can't serializable

Is This Answer Correct ?    2 Yes 1 No

what is transient variable?..

Answer / mithun ray

Transient variable is a variable that can't
serializable,means if you dont want to parsistent any object
or part of an object you can use transient object.

Ex:- transient String password;

In real time transient varibles are used banking application
because never stored account holder passwords.

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Java Related AllOther Interview Questions

What is http session in java?

0 Answers  


What is mime in java?

0 Answers  


How can one prove that the array is not null but empty?

0 Answers  


What is the difference between the boolean & operator and the && operator?

0 Answers  


What is a stream in programming?

0 Answers  


What is flatmap in rxjs?

0 Answers  


Explain different way of using thread?

0 Answers  


why the sleep method does not leave the lock and wait method leave the lock

4 Answers  


What happens when you omit a brace or misspell one of the words, like public or

0 Answers  


What is dto in java?

0 Answers  


Employee has a Passport. here employee is an object and passport is an object, give the class design

3 Answers  


What if I do not provide the string array as the argument to the method?

0 Answers  


Categories