- 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 keyword is used to declare a variable in VBScript?
Answer : C
Explaination
Variables are declared using 'dim' keyword.
Answer : A
Explaination
+ operator adds two Values as Variable Values are Numeric. So A + B will give 15.
Q 3 - Which of the following is true about cookie handling in VBScript?
A - VBScript can manipulate cookies using the cookie property of the Document object.
Answer : C
Explaination
Both of the above options are correct.
Q 4 - How will you get the square root of the given number in VBScript?
Answer : D
Explaination
Using Sqr function, which returns the square root of the given number.
Q 5 - How will you trim the spaces on the left of a string using VBScript?
Answer : C
Explaination
Using Ltrim function, which returns a string after removing the spaces on the left side of the specified string.
Q 6 - What StrComp(String1, String2) returns if String1 is greater than String2 in lexicographical order?
Answer : C
Explaination
StrComp(String1, String2) returns 1 if String1 is greater than String2 in lexicographical order.
Q 7 - How to return a value from a function in VBScript?
Answer : B
Explaination
To return a value from a function, simply assign the value to the function name itself.
Q 8 - What is the purpose of Drive object of Scripting.FileSystemObject class in VBScript?
B - Drive contains methods and properties that allow developers to create, delete or move a file.
C - Drive provides a list of all files contained within a folder.
D - Drive provides methods and properties that allow developers to create, delete or move folders.
Answer : A
Explaination
Drive contains methods and properties that allow you to gather information about a drive attached to the system.
Q 9 - Which of the following is correct about RegExp.Replace method?
B - If there are no match then the original search-string is returned.
Answer : C
Explaination
Both of the above options are correct.
Q 10 - Which of the following is true about date value assignment in VBScript?
A - The date values should be assigned without double quotes.
B - The date values should be enclosed within doublequotes(").
C - The date values should be enclosed within hash symbol(#).
Answer : C
Explaination
The date values should be enclosed within hash symbol.