Computer Science

Which is/are the basic I/O (input-output) stream(s) in file?

  1. Standard Input
  2. Standard Output
  3. Standard Errors
  4. All of these

Python Data Handling

1 Like

Answer

All of these

Reason — The basic I/O streams related to files are Standard Input (stdin), Standard Output (stdout), and Standard Error (stderr). Standard Input (stdin) is used for receiving input, Standard Output (stdout) is the stream for regular output, and Standard Error (stderr) is specifically designated for error messages and warnings.

Answered By

1 Like


Related Questions