Intro to Visual Basic .NET Flashcards
What is Visual Basic .NET based on?
The .NET framework
Variable
A variable is a memory location that’s used to store data. A variable is referred by a name and can store data of any particular data type. The data stored in a variable can change at any point in the program
Data types
The data type refers to what kind of data such as numbers or text. Visual Basic .NET provides you with various data types such as Integer, String, Byte, and Date
Constant
A constant is similar to a variable and is used to store a value. The only difference between the two is that the value stored in a constant always remains the same. A constant is also assigned a name and is of a particular data type
Array
An array is a set of variables with the same name. You refer to these variables by specifying their index position, which is the position of the variables in an array. Visual Basic .NET enables you to create single- and multi-dimensional arrays as well as to resize the array at runtime.
Enumeration
An enumeration is a set of related constants
Operators
An operator is a symbol used to perform operations on constants and variables. Visual Basic .NET provides you with arithmetic, logical, and concatenation operators to perform with constants and variables.
Expression
A combination of variables, constants, and operators, an expression returns a value
Statement
A statement is a combination of variables, constants, operators, expressions, and keywords
Keyword
A term with a special meaning i.e. the Dim keyword is used to declare a variable
Declaration Statements
These statements are used to declare a variable, a constant, or procedure
Executable Statements
These statements are used to perform an action
Procedure
A procedure is a set of statements that are used to perform a specific task
Assembly
An EXE or a DLL file that forms the basis of deployment, version control, reuse, and security permissions of an application- an assembly is a building block of the .NET framework.
Namespace
Contains types, such as classes, structures, enumerations, and interfaces.