Multiple file open modes are specified to the fstream constructor by separating each open mode from the next with the bitwise inclusive or operator __________.

a. ||
b. ^
c. &
.d |


.d |

Computer Science & Information Technology

You might also like to view...

Show the printout of the following code:

``` #include using namespace std; void xFunction(int i) { do { if (i % 2 != 0) cout << i << " "; i--; } while (i >= 1); cout << endl; } int main() { int i = 1; while (i <= 5) { xFunction(i); i++; } cout << "i is " << i; return 0; } ```

Computer Science & Information Technology

____ a selection is always a smart idea because you never know when you might want to access the selection again in the future.

A. Duplicating B. Saving C. Sharing D. Cropping

Computer Science & Information Technology

Input file stream objects are declared to be of type ____.

a. istream b. iofstream c. ifstream d. ofstream

Computer Science & Information Technology

? Every object on the Internet has a unique English-based address called its Uniform Resource Locator (URL).

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

Computer Science & Information Technology