testing Online Quiz - 7
Description: testing Online Quiz - 7 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: testing |
Object repository comparison and merger tools can be found under Quick Test’s tools menu. State true or false
How many checkpoint types are supported by Quick Test?
How many output value types are supported by Quick Test?
What is the statement that can be used to make VB Script, mandate variable declaration?
In VB Script, variables cannot be declared to a specific data type. State true or false
Figure out the issue in the piece of code below Dim arr(5) s = 10 Redim arr(s)
VB Script is case sensitive. State true or false
What is the method that can be used to retrive a run time value of any object, say a user input value?
Output values cannot be used to perform validation checks. State true or false
What is the keyword that is used to retain the previous values, when we redim a dynamic array to different sizes?
When we create a 2 dimention array, an element in the created array can be referenced by how many indices?
To assign an object reference, what is the keyword that is used?
Regular expressions can be applied to object repositories. State true or false
Which is the deprecated version of loop?
In places of 'For Each … Next loop', conventional For loop cannot be used, to iterate through collections . State true or false.
Predict the output:
Set r = New RegExp
r.pattern = “ion$” Msgbox r.test(“consideration”)
Subroutines do return values, whereas Functions do not. State true or false
Local repositories cannot be associated to a test, using Resources menu. State true or false
Predict the output
Set objEdit = Description.Create
objEdit(“micclass”).Value = “Link”
objEdit(“name”).Value = “username”
Browser(“...”).Page(“...”).WebEdit(objEdit).Set “test_user_name”