transient Keyword in Java
transient Keyword is about reading or writing data outside the program — files, bytes, or characters. Byte streams (InputStream/OutputStream) handle raw bytes. Character streams (Reader/Writer) handle text.
For transient Keyword, always close resources. Prefer try-with-resources so close happens even if an error occurs. Buffered streams are faster for many small reads.
transient Keyword viva: serialization turns an object into bytes. transient fields are skipped. Don’t serialize secrets without a plan.
Let's take this on the board with one tiny Main class — no extra files. transient Keyword in Java — final, boolean, if, true are keywords used with normal meaning. Start from main, go line by line, and stop at each print. That output is the proof for transient Keyword.
Give 5 keywords from different groups: access, type, control, modifier, package.