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 |
write script to open Gmail.com, and to write script for entering username and password and show whether the result as pass or fail
How many data types are supported in Vbscript?
did any one attended interview in applabs if you had gone through plz tell me the procedure
Why to use option explicit in vb script?
How to write functional test cases for send button in gmail.
How to Convert Hex color code to color name in VB Script?
What are class properties?
How will you convert a string to upper case string using vbscript?
What is the use of the recordset object and which statement is used to create such an object?
Explain different types of segment?
How to check the particular window is exist or not with out using check points
Which operator is used to perform the comparison among 2 operands in the vbscript language?