Multiple choice What is a proper method of opening a file for writing as a binary file? FILE *f = fwrite( test.bin, b ); FILE *f = fopen ( test.bin, w ); FILE *f = fopen( test.bin, wb ); FILE *f = fwriteb( test.bin ); FILE *f = fopen( test.bin, bw ); Reveal answer Fill a bubble to check yourself C Correct answer