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 |
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 ?
what is event handling?
Can we create Crystal Report object in QTP?If yes then what it is and what are its various properties?
how to write basic programs in VB Script like addition, multiplication?
write a Vb script to find a whther a selected drive exits.
Explain vbscript in detail?
What is purpose of scripting.filesystemobject class in vbscript?
Write a function for Instr(). We need to write a function that works as same as Instr(). Code or Even pseudo code is good enough for me.?
How do you write an SQL insert statement?
write a vb script to display 3*3 matrix
Explain about .wsf files?
How many types of operators are available in the vbscript language?