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


Please Help Members By Posting Answers For Below Questions

Explain about filter expression?

563


what is the difference between modular and data and keyword driven framework

1738


What is the main difference between function and sub-procedure?

549


Explain few date functions in vbscript?

612


When to use function procedures and what are its characteristics?

548






What aspects of vbscript make it safe so that a web page using vbscript cannot destroy or corrupt information on a user's computer?

577


I am working on QTP, got struck in one place.. In my application depending upon configuration WebEdit count is increasing/ decreasing.. how to get these webedits..

1801


Which function allows you to instantiate an object given its programmatic identifier or progid?

560


Mention characteristics of sub procedures?

578


What is the scope of a constant declared using public?

557


What is vbscript?

595


Can anyone send me a vb script function for verifying the functionality of active links on a web page

1596


Mention what is the technology used by vb script?

523


How to create a cookie using vbscript?

589


Explain the scope of the variables using dim, public, and private keywords respectively.

715