1.

Name The Filter Stream Classes On Reading Side Of Byte Stream?

Answer»

There are FOUR classes:

  • LineNumberInputStream (the extra functionality is it adds line numbers in the destination file),
  • DataInputStream (contains special methods like readInt(), readDouble() and readLine() etc that can READ an int, a DOUBLE and a string at a time),
  • BufferedInputStream (gives BUFFERING effect that increases the performance to the peak) 
  • PushbackInputStream (pushes the required character back to the system).

There are four classes:



Discussion

No Comment Found