When a file is opened, the file stream object's "read position" is

a. at the end of the file
b. at the beginning of the file
c. nonexistent until the programmer declares it
d. in the middle of the file
e. None of these

b. at the beginning of the file

Computer Science & Information Technology

You might also like to view...

What output is produced by the following code fragment?

``` int num = 1, max = 20; while (num < max) { if (num%2 == 0) System.out.println(num); num++; } ```

Computer Science & Information Technology

____________________ formatting changes a cell's formatting when its contents match a specified condition.

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

Computer Science & Information Technology