1
2 2
3 3 3
4 4 4 4
5 5 5 5 5
how to find using vbscripting
Answers were Sorted based on User's Feedback
Answer / abbas khan
Option Explicit
Dim Var, i, j
For i = 1 To 5 Step 1
For j = 1 To i Step 1
Var = Var &i &Space(3)
Next
Var = Var &vbNewLine
Next
Msgbox Var
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sumathi
n=inputbox("enter a number")
For i=1 to n
x=" "
For j=1 to i
x=x&vbtab&i
Next
print x
Next
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / prathyusha
for i=1 to 5
for j=1 to i
n=n&i
next
v=v&vbcrlf&n
next
msgbox v
| Is This Answer Correct ? | 0 Yes | 0 No |
Which respective symbols are used to separate a line and to break the lengthy statement into multiple statements in the vbscript language?
How to pass argument by reference to a function in vbscript?
If we take 2 strings as “good” and “bad” then what will ‘+’ and ‘&’ operators return?
I want to run QTP script on Linux server is it possible to do this by connecting Windows to Linux through VPN/Terminal Server and just run the script on Linux server.
how to increase the values in text box in a given text box increament by two values by clicking on button
Explain the scope of the variables using dim, public, and private keywords respectively.
Join the multiple array with out using JOIN function
Develop a parameterized action that accomplishes the following a. Launch a browser of users choice ( example : IE, chrome etc) b. Open up a search engine (Google, Bing etc) c. Perform a search d. Click a particular link depending on the user’s choice ( 1st , 2nd or third link)
What is the technology used by vb script?
Which keyword is used to declare a variable in the vbscript language?
Which operator is used to concatenate the 2 values in the vbscript language?
How will you get a combined string from array of string in vbscript?