write a vb script to display 3*3 matrix
Answer / mudaseer
dim varr(2,2)
for i=0 to 2 step 1
for j=0 to 2 step 1
varr(i,j)=inputbox("enter the value")
next
next
for i=0 to 2 step 1
for j=0 to 2 step 1
vstr=vstr & varr(i,j) & " "
next
vstr=vstr & vbnewline
next
msgbox vstr
Is This Answer Correct ? | 10 Yes | 3 No |
write a program to display the system specifications of client system with the help of vb script.
What is the use of "Option Explicit"?
What is sql loader? Explain the files used by sql loader to load file?
a;;b;c;;;d in this string output is abcd will come how can we do that in vbscript in QTP testing?
where can i learn VB scripint ?
How to insert snapshot during manual scripting in QTP?
after medical test,when will be the police verification
What is purpose of scripting.filesystemobject class in vbscript?
write a vb script to display factorial of a number using function
Explain some uses of vb script?
What is the difference between VBScript and JavaScript?
How to pass the parameter from one function to another function in VB Scripting?