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 Vb script to find a whther a selected drive exits.
How to find the font in qtp. Scenario:After entering the username and passwd you will be navigate into the "welcome:Username" page.Now I want to extarct font for this message.
HOw we can apply web service checkpoint in QTP 9.5? I tried it out with net connection also. But not getting success.
How to generate 3 digit random number?
Mention what is select case statement?
Set srchobj=Description.Create() srchobj("type").value="text" srchobj("name").value="q" srchobj("html tag").value="input" browser("micclass:=google").Page("micclass:=google").webedit (srchobj).Set "qtp" what's wrong in my code pls tell me ? the above code working fine and i got my result pass,now i am trying to run the program it shows general run time error why?pls help me i am in learning stage ?
wht must be the interview question on corinthian information technology solutions incorporated.
write a vb script to display the number is odd or even and whether it is divisible by 9 or not
Explain vbscript in detail?
Mention characteristics of sub procedures?
Explain the scope of the variables using dim, public, and private keywords respectively.
How will you get a subset of a array in vbscript?