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 |
What are the environments supported by vbscript language?
Consider there are objects in a webapp which are identified by QTP. Suppose you know only the logical name of a object(absolutely nothing else about it). Which approach will you take to find the "micClass" of the object(You can't use Object Spy, or can't add the object in repository)?
What is the difference between ByRef and ByVal. When to use ByRef and ByVal
How do you write an SQL insert statement?
Mention what are the rules to name variable in vbscript?
What is vbscript procedures?
How are values assigned to the variables in the vbscript language?
How to delete a cookie using vbscript?
What are the different types of operators and their order of precedence?
How will you check that a variable is an array in vbscript?
what is resorceallocation
If else for do while select in vb script?