Can anyone help me in write coding to get this pattern
*
**
***
****
Answer Posted / rajani_kanth
Option Explicit
Dim i,j,k
for i=1 to 5
for j=1 to i
k=k&"*"&" "
Next
k=k&" "&vbnewline
next
msgbox k
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How will you get the natural logarithm of the given number in vbscript?
If a calulator having 3 buttons (of any number)in 3 of them one is not working properly due to which answer is wrong always. write a script to find out which button is not working properly ?
How will you check that a variable is an array in vbscript?
How will you get the smallest subscript of an array in vbscript?
write a program to display configuration of a local system with the help of vb script.
Which operator is used to perform the comparison among 2 operands in the vbscript language?
How will you get the exponent of the given number in vbscript?
How can you fetch the value of a cookie?
can anyone send me a vb scripts code for clicking on a link and coming back on home page again does the same for many links on a web page.
Which object is used to work with the database in the vbscript language and what statement is used to create this object?
Explain about adodb.stream class?
Explain about scrrun.dll in vbscript?
What are the disadvantages of vbscript?
How to create a cookie using vbscript?
Which command is used for writing text on a page?