write a vb script to find simple interest using functions
Answer / mudaseer
sub si(p,t,r)
dim si
si=p*t*r/100
msgbox si
end sub
call si(10,10,1)
Is This Answer Correct ? | 23 Yes | 7 No |
regular expression that will recognize a browser as long as its name property starts with mybrowser
What is the purpose of folders object of scripting.filesystemobject class in vbscript?
Explain about constants in vb script?
Input = 124 output should be 124421 Please do not use any string functions/variables
How do I check that the names in a weblist are correct e.g in flight application the names of item are Denver, paris,London, etc. How do I ensure the correct item is displayed from the list after doing item count ?
Mention what is the technology used by vb script?
Difference between Function and Sub routine?
Why is the use of exit do or exit for statements within loops discouraged?
Explain about scrrun.dll in vbscript?
Explain about the support of asp for vb script functionality?
Write program for identifyig duplicates in flight Departing from and Arriving in mercury tours(web application).
In what way program "hello world" you can write in vbscript?