Can anyone help me in write coding to get this pattern
*
**
***
****
Answers were Sorted based on User's Feedback
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 |
Answer / anil
For i=0 To 4
For j=0 To i
vstr=vstr&"*"&""
Next
vstr=vstr &" "
Next
msgbox vstr
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / chandu
a=4
for i=1 to a step 1
b= string(i,"*")
c=c&" "&b
next
msgbox c
| Is This Answer Correct ? | 1 Yes | 1 No |
write a text script to display * as below ********** **** **** *** *** ** ** * * * * ** ** *** *** **** **** **********
what is extension of the file if its saved from recovery manger to some drive
What are class variables?
Explain How do you create a recordset object in vbscript?
Explain the filter expression?
How should i Create Email invite with server-side Coding?
By default in vbscript the arguments passed to functions and subroutines are by reference or by value?
Mention what is the difference between vbscript and vba?
while using Keyward driven framework in QTPif new requirements are added how to manage it...plz ans
When inserting strings into a SQL table in ASP what is the risk and how can you prevent it?
How to replace junk code recorded by QTP with a mall function.
Explain the functionality of vbscript?