answersLogoWhite

0

What is used to declare variables in Visual Basic?

Updated: 8/20/2019
User Avatar

Wiki User

11y ago

Best Answer

declaration of variable is dim a as integer

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is used to declare variables in Visual Basic?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

MG university Bcom previous year question papers?

discribe the six variables used in visual basic?


Which Compiler is used in visual basic?

visual basic has it's own compiler that Microsoft developed for it I think it was called vbcomp


Why there are not local and global controls in visual basic programming?

There are, you can either use "Dim" or "Public" when declaring variables to allow them to be used either in the local Sub or throughout the whole program.


What is visual basic generally?

Visual Basic is a computer development program. It's used to create .exe or executable programs.


Why visual basic is referred to as a tool?

Visual Basic is a computer programming language that can be used to create programs, but it is not a program in itself.


Is visual basics only available in Microsoft Excel?

No, Visual Basic is a program on its own too, used to create programs. VBA is used in Excel and other programs (Visual Basic for Applications).


Is Visual BASIC used today?

Visual Basic is used on windows computers for just about any task though they are usually but not always simple.


What is module in visual basic?

AnswerA key part of developing applications using Visual Basic is ensuring that the code is carefully structured. This involves segmenting the code into projects, modules and procedures so that it is easy to understand and maintain.A complete Visual Basic application is typically contained in a single project. Within a project, code is placed in separate code files called modules, and within each module, the Visual Basic code is further separated into self contained and re-usable procedures.


What are the different program structure of visual basic?

Program in visual basic are the component being used by the programer that will give the user fast and easy way.


What function in Visual Basic will return a date from a computer?

(it used to be) DATE$


whose variables are also known as global variables?

The variables which are declared outside the main() function is known as global variables and they can be used anywhere in the program. And, the variables which used declare inside the main() function is known as local variables and they can be used inside the main() function only. Example: #include<stdio.h> #include<conio.h> int x,y; // global variables void main() { int a,b; // Local variables ------------ ---------------------- --------------------- getch(); }


What is the difference between ordinary basic and visual basic?

QBASIC is not a visual language, although it can be used to create very crude visual programs (much like a BIOS screen in appearence). In contrast, Visual Basic can be used to create Windows-Based programs using the appropriate GUI and as such far more user friendly. Personally, I would use PASCAL and DELPHI - Pascal is similar in functionality to QBASIC (although more advanced), but can be used within Delphi to achieve more visual results.