14. A blank character can be input and stored into character variable c using the statement:
cin >> c;
15. The peek() method can be used to examine the next character in the input stream, without
16. When an input file encounters an input error and goes into the fail state an error message is
automatically generated and displayed on the output screen.
17. When an open statement is successful the stream state flag goodbit is set to 1.
19. If you have an overloaded output operator that can send data to an ostream, which of the
following are possible left-hand operands to the operator:
20. Derived classes like ifstream may only use inherited methods from the parent (base) class;
therefore ifstream has no specialized methods for working with files.
21. When an error occurs when reading from an istream, the fail bit is set on the stream and
execution of the program stops.
23. No prior knowledge of a file’s structure is needed to be able to read the file in C++.