think about what she wants to do with her life and what collage is best fit for that
List, resumes, spread sheet, databases, contracts
Answer: $420
Explanation: from the question above, mercy worked 42 hours at $10 an hour. Her total pay before tax is: 42 x 10 =
$420
Answer:
Vertical exchanges are typically used only to buy and sell materials required for an organization's support activities- False
Answer:
Set args = Wscript.Arguments
If (WScript.Arguments.Count <> 1) Then
Wscript.Echo "Specify the folder name as a command line argument."
Else
objStartFolder = args.Item(0)
Set objFSO = CreateObject("Scripting.FileSystemObject")
if (Not objFSO.FolderExists(objStartFolder)) Then
Wscript.Echo "Folder "&objStartFolder&" does not exist"
Else
Set objFolder = objFSO.GetFolder(objStartFolder)
Set colFiles = objFolder.Files
For Each objFile in colFiles
Wscript.Echo objFile.Name, objFile.Size, objFile.DateCreated
Next
End If
End If
Explanation:
Here's some code to get you started.