Problem:
Question 1- What WSH object is used for VBScript File I/O?
A. Scripting.FileSystemObject
B. FileSystemObject
C. Scripting.FileSystem
D. WScript.FileSystemObject
2. To test to see if a file is not Read Only, use the following VBScript code _____.
A. If NOT file.Attributes OR 1 Then
B. If NOT file.Attributes AND 1 Then
C. If NOT file.Attributes XOR 1 Then
D. If file.Attributes NOT 1 Then
Please select correct answer and also provide explaination.