write a text script to display * as below
**********
**** ****
*** ***
** **
* *
* *
** **
*** ***
**** ****
**********



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

Post New Answer

More VB Script Interview Questions

accept a string & display whether a is present or not

1 Answers  


How to pass the parameter from one function to another function in VB Scripting?

1 Answers   Fastenal,


Write a VB Script to count blank Lines in a notepad

2 Answers   IBM,


write a vb script to display the reverse of vbs

2 Answers  


How to create a function in vbscript?

0 Answers  






I have a webtable and many objects are embedded in side.(like buttons,checkboxes etc). How to know how many such objects are there? what is the class of that objects?

1 Answers   HP, TCS,


when you use For Loop, While..do, do..while? at what situations which loop will use.

1 Answers  


Give me sm ideas to write Vbscripts abt protocol testing abilash700@gmail.com.

0 Answers  


Explain what is loose binding? Why is it not a good practice to use it?

0 Answers  


Why is the use of exit do or exit for statements within loops discouraged?

0 Answers  


find the length of the string without using length function?

4 Answers   CSS Corp,


if there is any string in a given format like as "company name employeecode date" then we have to fetch employeecode form string for ex-string is "capgemini12345june2013" then we have to fetch 12345 by using vb script so guys how can we do that please reply it.

3 Answers   Cap Gemini,


Categories