Vbscript Quiz
Vbscript Quiz
Question: arrData is an array with 4 slots. Which answer will loop through all of
the array, and print out their content?
Question type: Hotspot
Answers: {153;222}
Correct: No
Question: arr(2) = ?
Question type: Multiple Choice
Answers: 1
Correct: No
Question: Which answer will preserve the number of slots in arrData, and will save
the data in the first slot of the array?
Question type: Multiple Choice
Answers: Dim arrData(4)
Question: Which calculation would return 1. you can choos more than one answer.
Question type: Multiple Response
Answers: Abs ( CInt ( True ) )
Correct: No
Question: VBScript has a special command named LBound, which returns the starting
index of an array. What are the possible indexes an array can start with?
Question type: Word Bank
Answers: Only 0
Correct: Yes
Question: In order to get the integer ASCII code of a character, we should use:
Question type: Multiple Choice
Answers: Asc("A")
Correct: Yes
Question: What is the importance on stating Option Explicit in the top of the
test?
Question type: Multiple Choice
Answers: When started, we have to specifically declare every variable we work with
(otherwise we'll get an error message)
Correct: Yes
Question: A=True,B=True,C=False ---> ( A And B ) Or C = ?
Question type: Multiple Choice
Answers: True
Correct: Yes