Comp 230 Quiz 6
Click Below Link To Purchase
www.foxtutor.com/product/comp-230-quiz-6
1. (TCO 6) When you create a VBScript Scripting.FileSystemObject, you must start the code line
with _____.
2. (TCO 6) To test to see if a file exists before you overwrite it in VBScript, use the following
command (assuming fso is a Scripting.FileSystemObject) _____.
3. (TCO 6) To Copy the file C:\Data\CustData.txt to C:\BackUp\CustData.txt in VBScript, use the
following command (assuming fso is a Scripting.FileSystemObject) _____.
4. (TCO 6) The following command opens a text file in VBScript.
Set file = fso.OpenTextFile(“C:\Data\CustData.txt”, ?, ??, ???)
To open a file for appending, the value of ? must be _____.
5. (TCO 6) The following command opens a text file in VBScript.
Set file = fso.OpenTextFile(“C:\Data\CustData.txt”, ?, ??, ???)
To ensure that the file is formatted as ASCII instead of Unicode, the value of ??? must be _____.
6. (TCO 6) To test to see if a directory (or folder) exists before you write data to it in VBScript,
use the following command (assuming fso is a Scripting.FileSystemObject) _____.