write a text script to display * as below
**********
**** ****
*** ***
** **
* *
* *
** **
*** ***
**** ****
**********
Answer / chandra
for i = 1 to 5
for j = 1 to i
k = k & "*"
next
k = k&vbcrlf
Next
Msgbox k
| Is This Answer Correct ? | 0 Yes | 3 No |
Difference between dim,public and private variables in vb script?
How regexp.execute method works?
How will you convert a string to lower case string using vbscript?
How to generate 3 digit random number?
give me an ex. of unoverloaded method?
* ** *** Please write a code to get output like above diagram? ple explain as it how the code works?
Mention when to use function procedures and what are its characteristics?
WHAT IS ENVIRONMENT VARIABLES?and where it is used in real time scenario?
To get data from table which method will be used in QTP
What is the purpose of drive object of scripting.filesystemobject class in vbscript?
Mention what is the main difference between function and sub-procedure?
Why do we use Option Explicit?