Answer the following statements true (T) or false (F)

1. Nonprintable characters may be written to or read from a stream.
2. A stream has a fixed size
3. Assuming ch is declared as a character variable, cin.get (ch) skips any leading white space when reading into ch.
4. When reading from a data file, the external file name and the internal file name must be the same.
5. External data files saved on a secondary storage device are considered permanent files.


1. True
2. False
3. False
4. False
5. True

Computer Science & Information Technology

You might also like to view...

The StringLength property stores an integer that represents the number of characters contained in a String.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Given the program, which of the following class member accesses are legal?

``` #include using namespace std; class DayOfYear { public: void input(); void output(); int month; int day; }; int main() { DayOfYear birthDay; birthDay.input(); // a) birthDay.day = 25; // b) cout << birthDay.month; // c) cout << birthDay.output(); // d) if(birthDay.month == 1) // e) cout << "January\n"; } ```

Computer Science & Information Technology

Each icon in your Notification Area indicates a running process, which may or may not have a window currently opened

Indicate whether the statement is true or false

Computer Science & Information Technology

The lines that run horizontally and vertically in a worksheet and intersect to form the cells are called ________

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology