Answer Posted / 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 View All Answers
What is purpose of scripting.filesystemobject class in vbscript?
Which in-built function related to an array joins substrings into one string in the vbscript language?
By default in vbscript the arguments passed to functions and subroutines are by reference or by value?
Explain about the asc function?
How to scroll down a page while recording in qtp. suggest me any method apart from low level recording.
Which data type/types are supported by vbscript language and what are their specialties?
how to automatically update the sql server2005 database records when insert in vb6?
What is select case statement?
How will you get a combined string from array of string in vbscript?
How can you fetch the value of a cookie?
How many types of procedures are available in the vbscript language?
Explain a few date functions in vbscript
How will you get the octal value of the given number in vbscript?
What is the difference between vb debugger and the script debugger?
If else for do while select in vb script?