write a vb script to generate the following pattern
*****
****
***
**
*
Answer Posted / eswar
x = "*"
For i=5 to 1 step -1
For j=1 to i
y = y&x
Next
y=y&" "
Next
MsgBox y
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
How to take whole text output from screen of Bitmap Application.
Which operator is used to concatenate the 2 values in the vbscript language?
How to add actions in driver script to run those actions in QTP?
What purpose does ‘on error resume next’ serves?
What are class events?
Explain about the support of asp for vb script functionality?
How regexp.execute method works?
Explain the support of asp for vb script functionality?
How to write VB script for login module?
How will you reverse a string in vbscript?
Which in-built functions are used to convert the specified expression in the form of date and string in the vbscript language?
Is VB Script Case sensitive or Case insensitive?
There are 5 web pages.write a script to click the button on 4th web page.
Compare java script and vb script?
How to delete a cookie using vbscript?