write a vb script to display 3*3 matrix



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

Post New Answer

More VB Script Interview Questions

What is the difference between do until loop and do while loop?

1 Answers  


how to increasing the numbers in a given text box please write a vb script

1 Answers  


Please let me Know regarding any material regarding VB Scripting which should be easily understandable for Beginners.

1 Answers  


. Program for sorting of numbers in vb script?

2 Answers   Talent Sprint,


How can I write HTML text to the window in VB Script?

2 Answers  


if u ve resrevation for train and u get a number supose 1234xxxokie.after sucessul entering all required fields. now u put that number in search and want to chk wether these ar same or not if both ar same then its okie otherwise test fail.what would be the vb script code for it to compare these two values of different page.

1 Answers  


Explain sga memory structures?

1 Answers  


What is the use of the date function in the vbscript language?

1 Answers  


How to create pull down menu box using vb script

0 Answers  


what is the object hyrarchy in QTP for a web based application

1 Answers  


What is the equivalent of VBScript?s On Error In Jscript ?

1 Answers   Microsoft,


How to Pass Multiple values in functions by using vb script? Function value(arg1,arg2) N1=arg1+arg2 N2=arg1-agr2 N3=arg1*agr2 N4=arg1/arg2 Value= How to pass ? End Function

3 Answers   iGate,


Categories