write a vb script to generate the following pattern
*****
****
***
**
*
Answer Posted / eswar
x = "*"
For i=5 to 1 step -1
For j=1 to i
y = y&x
Next
y=y&" "
Next
MsgBox y
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
Mention how to access array data?
Write a test case using Test if the images,a particular test exists,check if the page links match,page response is within a certain range,parameterization of the test,the test should comprise of actions,the test should use a custom function,the test should use global repository
Explain vbscript in detail?
What is Procedure or Subroutine in VB Script?
Mention the environments where vbscript could be run?
How will you get a string with the specified character the specified number of times in vbscript?
Explain the filter expression?
What is the use of the instr function?
Which function is used to perform string comparison?
How to delete a cookie using vbscript?
In what way program "hello world" you can write in vbscript?
Is VB Script Case sensitive or Case insensitive?
For a webbased application:- what should be code in expert veiw, for retrieving a single column name "username" from a server and checking whether exported "username" from datatable doesn't exist in server. suppose i have saved in excelsheet a username="gayatri" , which is exported, then checked for whether this username "gayatri" exist in server database or not ? if exist then allow to enter new username, which should be again checked for in loop , or else come out of loop and enter a distinct "username". plz let me have this answer in my id gayatrisahooin@hotmail.com
What is the use of the formatdatetime function in the vbscript language?
Which operator is used to concatenate the 2 values in the vbscript language?