write a vb script to generate the following pattern
*****
****
***
**
*
Answers were Sorted based on User's Feedback
Answer / mudaseer
for i=5 to 1 step -1
for j=i to 1 step -1
vstr=vstr & "*" & " "
next
vstr=vstr & vbnewline
next
msgbox vstr
| Is This Answer Correct ? | 30 Yes | 6 No |
Answer / prathyusha
For i=5 To 1 Step-1
For j=1 To i
v=v&"*"
Next
n=n&vbCrLf&v
v=""
next
MsgBox n
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / miko
Dim x,i,j
For i=1 To 5
For j=1 To i
x=x&j
Next
x=x&vbNewLine
next
MsgBox x
***********output*********
1
12
123
1234
12345
| Is This Answer Correct ? | 7 Yes | 3 No |
Answer / sumathi
For i=5 to 1 step -1
var=string(i,"*")
print var
Next
| Is This Answer Correct ? | 14 Yes | 11 No |
Answer / 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 |
Answer / sanju
ioutput=""
inum=inputbox("enter number")
For indx1 = inum To 1 step-1
For indx2 = 1 To indx1
ioutput=ioutput&"*"
Next
print ioutput
ioutput=""
Next
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / nilesh banjare
Num=InputBox("Please enter the number")
For j = 1 To Num Step 1
str= ""
For i = Num to j step -1
m="*"
str = str & m
Next
print str
Next
OUTPUT:-
*****
****
***
**
*
| Is This Answer Correct ? | 5 Yes | 4 No |
what is extension of the file if its saved from recovery manger to some drive
Suppose by navigation I went from 1 st page to 5 page ,so Write a generic script for coming from any page to the 1st page and by executing where the page may be it will come to 1st page
What is the purpose of on error resume next statement?
what is the use of Data base check point ?
w r p syed then output was deys and click eysd and click ysde and click sdey and click deys and click eysd............
Explain different types of segment?
What is the purpose of folders object of scripting.filesystemobject class in vbscript?
write a vb script to open a text file and write into it
can any body give the code to write the function for given suppose user login with usrer id and pwd to yahoomail.after cliking "sign in"if it is valid user id the next page will display userid'message box.( Note u have to use excel sheet to retrive the userid's data)
How do display output message without using msgbox function?
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
Mention what are the rules to name variable in vbscript?