di/
Chat with our AI personalities
a persitent object is the one that is stored permanently on the disk......whereas a transient object is stored temporarily on the ram....
A5uf capacitor has 5*10-4 coulombs of charge stored on its plates
Transient Variables are those that do not get serialized during the Serialization process. A Static variable is one that is mapped to the Class and is not mapped to any object instance and hence they would not get serialized. So, there should be no problem with declaring a transient variable as static. On the other hand, A final variable is one that's value cannot change. So if you declare a final variable as transient, it would get stored as null during serialization and when you try to de-serialize the variable, you will get errors because, the variable is final and you cannot assign values for it and it is saved as null during serialization. Result: Yes you can have static transient variables but not final transient variables.
(a) what is the total capacitance of this arrangement (B) the charge stored on each capacitor (C) the voltage across the 50 micro farad capacitor and the energy stored in it. 20v and 20+30+50 micro farad
Strings represented by the language character set (e.g., ASCII) are stored as null-terminated arrays of type char. Wide-character strings are stored as null-terminated arrays of type wchar_t. Other types are also available, such as char16 and char32 (for UTF16 and UTF32 encodings, respectively).