VBScript Online Quiz


Following quiz provides Multiple Choice Questions (MCQs) related to VBScript Framework. You will have to read all the given answers and click over the correct answer. If you are not sure about the answer then you can check the answer using Show Answer button. You can use Next Quiz button to check new set of questions in the quiz.

Questions and Answers

Answer : C

Explaination

Variables that are declared as 'Private' have scope only within that script in which they are declared. When declaring a variable of type 'Private', Dim keyword is replaced by 'Private'.

Q 2 - Which of the following operator can be used to check if two numbers are equal or not in VBScript?

A - !=

B - <>

C - not

D - None of the above.

Answer : B

Explaination

<> operator is used to check if two numbers are equal or not.

Q 3 - Which of the following function of VBScript converts a given number of any variant subtype to Long?

A - CDbl

B - CInt

C - CLng

D - CSng

Answer : C

Explaination

CLng function converts a given number of any variant subtype to Long.

Q 4 - How will you get the absolute value of the given number in VBScript?

A - Using Abs function

B - Using Exp function

C - Using InStr function

D - Using InStrRev function

Answer : A

Explaination

Using Abs function, which returns the absolute value of the given number.

Q 5 - What StrComp(String1, String2) returns if String1 is same as String2?

A - -1

B - 0

C - 1

D - None of the above.

Answer : B

Explaination

StrComp(String1, String2) returns 0 if String1 is same as String2.

Q 6 - How will you get a string with the specified character the specified number of times in VBScript?

A - Using Replace function

B - Using Compare function

C - Using InStr function

D - Using String function

Answer : D

Explaination

Using String function, which returns a String with a specified character the specified number of times.

Answer : B

Explaination

To return a value from a function, simply assign the value to the function name itself.

Q 10 - What is the output of A & B in VBScript if A = "VB" and B = "Script"?

A - VBScript

B - Error

Answer : A

Explaination

& operator concatenates two values. So A & B will give VBScript.

vbscript_questions_answers.htm
Advertisements