A source file is a file containing links to receive data from the destination files
Indicate whether the statement is true or false
FALSE
You might also like to view...
Which of the following file extensions will initialize the program installation process in Microsoft Windows?
A. *.EXE B. *.INI C. *.CFG D. *.SYS
If you want to append data to an existing binary file, BinaryFile.dat, which of the following statements would you use to open the file?
a. ``` FileOutputStream fstream = new FileOutputStream("BinaryFile.dat"); DataOutputStream binaryOutputFile = new DataOutputStream(fstream); ``` b. ``` FileOutputStream fstream = new FileOutputStream("BinaryFile.dat", false); DataOutputStream binaryOutputFile = new DataOutputStream(fstream); ``` c. ``` FileOutputStream fstream = new FileOutputStream("BinaryFile.dat", true); DataOutputStream binaryOutputFile = new DataOutputStream(fstream); ``` d. ``` IFileOutputStream fstream = new FileOutputStream("BinaryFile.dat"); DataOutputStream binaryOutputFile = new DataOutputStream(fstream, true); ```