Question 1: The Windows CLI shell command that is used to display all of the environmental variables and their values is _____.
- env
- set
- var
- shell
Question 2: Which one of the following Windows AT commands specifies an action that will take place at 3:00 p.m.?
- at 3:00 command
- at 3:00 p.m. command
- at 15:00 command
- at 14:00 command
Question 3: The Windows CLI command that is used to display the search path for the executable files is _____.
- echo path
- echo pathext
- path
- pathext
Question 4: The Windows CLI command that is used to display the extensions recognized as executable files is _____.
- pathext
- echo PATHEXT
- echo %PATHEXT%
- echo $PATHEXT$
Question 5: What is the assignment operator?
^
*
%
Questiopn 6: What is the division operator?
- /
- ^
- *
- +
Question 7: The value of a string constant will _____.
- change during the execution of a program
- remain the same until it is assigned a new value
- be on the left side of an assignment operation
- retain the same value during program execution
Question 8: What is an example of a string constant?
- 1
- "oops"
- 12432
- o
Question 9: What is the multiplication operator?
- =
- ^
- *
- %
Question 10: The following VBScript statement will open a text file.
Set file = fso.OpenTextFile("C:\Data\CustData.txt", ?, ??, ???)
To create a new file if it doesn't exist, the value of ??
must be _____.
- 1
- 2
- false
- true
Question 11: The following VBScript statement will open a text file.
Set file = fso.OpenTextFile("C:\Data\CustData.txt", ?, ??, ???)
To open this file for reading, the value of ? must be _____.
- 1
- 2
- True
- False
Question 12: The following VBScript statement will open a text file.
Set file = fso.OpenTextFile("C:\Data\CustData.txt", ?, ??, ???)
To open this file for writing, the value of ? must be _____.
- 1
- 2
- true
- false
Question 13: The questioning that causes extraction of data from a relational database is known as _____.
- extraction
- sorting
- data refining
- querying
Question 14: Which one of the following is a correct SELECT clause in a VBScript program for selecting the fields: FirstName and LastName and Age?
- SELECT FirstName and LastName and Age
- SELECT FIELDS(FirstName,LastName,Age
- SELECT FirstName,LastName,Age
- SELECT FROM FirstName,LastName,Age
Question 15: In a VBScript SQL Query statement, what Boolean operator can be used to test a set of conditions whereby all conditions must be true?
- OR
- AND
- XOR
- NOT
Question 16: Which field would be suitable as a primary key in a table that contains employee records?
- Area code
- Last name
- Birth date
- An employee number
Question 17: Intermediate values that are not inputted or displayed should be stored in _____ variables.
- unnamed
- work
- temporary
- global