+1 vote
in JAVA by
What do you understand by an IO stream?

1 Answer

0 votes
by

The stream is a sequence of data that flows from source to destination. It is composed of bytes. In Java, three streams are created for us automatically.

  1. System.out: standard output stream
  2. System.in: standard input stream
  3. System.err: standard error stream

Related questions

0 votes
asked Feb 8, 2021 in JAVA by SakshiSharma
0 votes
asked Apr 15, 2021 in JAVA by SakshiSharma
...