answersLogoWhite

0

Declares and allocates storage space for one or more variables.

i.e. Dim A1() As Integer = {0, 1, 2, 3}

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

When defining a variable in visual basic what key word appear at the beignning of the statement?

Dim x as integer = 7


Two methods in Visual Basic to store value?

dim value1 as integer dim value2[3] as integer


How do you write BASIC program to accept variables?

dim a input a


What is used of dim x in visual basic?

um what do u think i mean its DIM x oh yh maybe ur dim so u don't get it yh that's right.


What is used to declare variables in Visual Basic?

declaration of variable is dim a as integer


What is difference between basic command and statement?

difference between command and statement


What is the correct coding for converting a string to a double in visual basic 2010?

Dim i as double = CDbl("12")


Which is an example of visual basic objects?

dim a as integer dim b as integer dim c as integer dim d as integer private sub command1_click () a=-1 b=1 d=1 while (d<=10) c=a+b print c a=b b=c next d end sub


What is function of GOSUB statement in subrouteen?

in BASIC, GOSUB and the RETURN statement allows the use of subrouteens.


How would you write Visual Basic Code to declare an Integer variable called intNumber?

Dim intNumber As Integer


What statement supports the basic values shared by Americans?

supports the basic values shared by Americans?


Ifthenstatement visual basic 6.0?

Like most languages Visual basic also uses the 'If' keyword to implement the decision control statement. The syntax of 'If' statement is as follow If <condition> Then Statements ........... ............................. End If For Example: Private Sub Form1_click() Dim marks As Integer marks= InputBox("Enter Marks : ") If marks >60 Then MsgBox "First Devision" End If End Sub