- VBScript - Home
- VBScript - Overview
- VBScript - Syntax
- VBScript - Enabling
- VBScript - Placement
- VBScript - Variables
- VBScript - Constants
- VBScript - Operators
- VBScript - Decisions
- VBScript - Loops
- VBScript - Events
- VBScript - Cookies
- VBScript - Numbers
- VBScript - Strings
- VBScript - Arrays
- VBScript - Date
- VBScript - Procedures
- VBScript - Dialog Boxes
- VBScript - Object Oriented
- VBScript - Reg Expressions
- VBScript - Error Handling
- VBScript - Misc Statements
- VBScript Useful Resources
- VBScript - Questions and Answers
- VBScript - Quick Guide
- VBScript - Useful Resources
- VBScript - Discussion
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.
Q 1 - Which of the following is true about VBScript?
A - VBScript is an object-based scripting language and NOT an Object-Oriented Programming language.
Answer : D
Explaination
All of the above options are correct.
Q 2 - Which of the following operator is supported in VBScript?
Answer : D
Explaination
All of the above operators are supported in VBScript.
Q 3 - Which of the following is the correct syntax to create a cookie using VBScript?
A - document.cookie = 'key1 = value1; key2 = value2; expires = date';
B - browser.cookie = 'key1 = value1; key2 = value2; expires = date';
C - window.cookie = 'key1 = value1; key2 = value2; expires = date';
D - navigator.cookie = 'key1 = value1; key2 = value2; expires = date';
Answer : A
Explaination
document.cookie = 'key1 = value1; key2 = value2; expires = date'; is the correct option.
Q 4 - How will you get the hexadecimal value of the given number in VBScript?
Answer : B
Explaination
Using Hex function, which returns the hexadecimal value of the given number.
Q 5 - What StrComp(String1, String2) returns if String1 is same as String2?
Answer : B
Explaination
StrComp(String1, String2) returns 0 if String1 is same as String2.
Q 6 - How will you increase the size of an array in VBScript?
Answer : A
Explaination
Using ReDim statement, we can declare dynamic-array variables and allocate or reallocate storage space.
Q 7 - How to pass argument by reference to a function in VBScript?
Answer : B
Explaination
If ByRef is specified, then the arguments are sent as by reference when the function or procedure is called.
Q 8 - What is the purpose of File object of Scripting.FileSystemObject class in VBScript?
B - File contains methods and properties that allow developers to create, delete or move a file.
C - File provides a list of all files contained within a folder.
D - File provides methods and properties that allow developers to create, delete or move folders.
Answer : B
Explaination
File contains methods and properties that allow developers to create, delete or move a file.
Q 9 - Which of the following is correct about RegExp.Execute method?
Answer : C
Explaination
Both of the above options are correct.
Q 10 - Which of the following is true about time value assignment in VBScript?
A - The time values should be assigned without double quotes.
B - The time values should be enclosed within doublequotes(").
C - The time values should be enclosed within hash symbol(#).
Answer : C
Explaination
The time values should be enclosed within hash symbol.