Answer Posted / mudaseer
dim varr(4),vhigh
for i=0 to 4 step 1
varr(i)=cint(inputbox("enter the value"))
next
vhigh=varr(0)
for i=1 to 4 step 1
if varr(i)>vhigh then
vhigh=varr(i)
end if
next
msgbox vhigh
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
create a form to accept username and password validate the username and password with using message box, display the corresponding user message
How to assign a numeric value to a variable?
how does vb script help in web page designing? explain with example.
Explain what is loose binding? Why is it not a good practice to use it?
What is the use of option explicit in vbscript?
Explain about tristate constants in vbscript?
Mention how you can call vbscript functions?
what is the differance between BYVAL,BYREF?
How will you convert a given number to long in vbscript?
What are the data types supported by vbscript?
What is Procedure or Subroutine in VB Script?
How to capture a runtime error in vbscript?
What is the purpose of folders object of scripting.filesystemobject class in vbscript?
What are events in the vbscript language?
What is the use of the formatdatetime function in the vbscript language?