write a text script to display * as below
**********
**** ****
*** ***
** **
* *
* *
** **
*** ***
**** ****
**********
Answer Posted / 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 |
Post New Answer View All Answers
What are class variables?
Is VB Script Case sensitive or Case insensitive?
What is the purpose of regexp object in vbscript?
How will you get the octal value of the given number in vbscript?
Explain about arrays in vb script?
Mention what is the use of option explicit in vbscript?
Explain about the asc function?
hi Set myobj=Description.Create() myobj("type").value="submit" myobj("name").value="google search" myobj("html tag").value="button" browser("title:=google").page("title:=google").webButton (myobj).Click i was running above code in one weak back it was working fine i got result,again i opened after few days ,again i was trying to run the code it shows run time error in last line of my code ,why ?pls answer my question?
What are the differences between sub procedures and function procedures?
How can constants be declared in the vbscript language?
What are the naming conventions while declaring a variable in the vbscript language?
How to access array data?
What is the difference between javascript and vbscript?
Explain the arrays in vb script?
how to operate webobjects in a webpage using getobject function and then using generic methods?