English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

please answer in detail.i hv to prepare it for my board exams.

2007-02-28 16:22:24 · 6 answers · asked by Anonymous in Computers & Internet Programming & Design

6 answers

END = stop or EXIT

DIM = set a dimensioned array

This isn't rocket science!

END

2007-02-28 16:27:35 · answer #1 · answered by Den B7 7 · 0 0

END indicates the end of the program. It occurs at the end.

DIM defines the dimensions of an array and allocates memory for the dimension variable. For example :

DIM a(8)
This statement defines a one dimensional array with 8 elements.

DIM X(2,7)
This statement defines a two dimensional array with 14 elements.

2007-03-03 07:04:04 · answer #2 · answered by Bharat 4 · 0 0

END means the program shoud stopped executing. No line after END will execute.


DIM stands for Declare In Memory.

For example

DIM X

will declare a variable in memory named X. You can assign values to X and use it in your program. This variable is declared in addressable memory (RAM ) of your computer and will be lost if you close your program without putting it onto some non-volatile drive.

2007-03-01 00:27:50 · answer #3 · answered by Ba 2 · 0 0

In VB, DIM is a dimension that we use to declaire a variable or to set a dimension array
ex.
DIM a, b

and End is the end for every sub to be executed....

Sub sub_name()
***compose of codes that will be executed
End Sub

2007-03-01 09:53:20 · answer #4 · answered by web2sign 2 · 0 0

DIM to declare a local,global variable
and END for ending (i.e., stopping) a function

2007-03-01 10:23:44 · answer #5 · answered by Aarthi R 2 · 0 0

Come on... If you're in a BASIC class these are almost the first things you learn.

DIM - define a new variable
END - well, uh, END (stop)

2007-03-01 00:26:48 · answer #6 · answered by BigRez 6 · 0 0

fedest.com, questions and answers