write a vb script to generate fibonnaci numbers
Answer / mudaseer
vnum=inputbox("enter a number")
i=0
j=1
vstr=i & "," & j & ","
msgbox vstr
for x=1 to vnum-2
k=i+j
vstr=vstr & k & ","
i=j
j=k
next
msgbox vstr
vnum=inputbox("enter a no")
i=0
j=1
vstr=i & "," & j & ","
msgbox vstr
for x=1 to vnum-2
k=i+j
vstr=vstr & k & ","
i=j
j=k
next
msgbox vstr
| Is This Answer Correct ? | 3 Yes | 1 No |
write a qtp script to count the number of minimized windows
How will you get the octal value of the given number in vbscript?
How to declare an array in vbscript?
How can you create a file object to work with the files in the vbscript language?
generic function for webedit box for web application
Explain the asc function?
What is the difference between do until loop and do while loop?
What is parametrization ?
Why do we use Option Explicit?
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 purpose does ‘on error resume next’ serves?
who will create the object?