CS103-chapter1-2 Flashcards
The first line of the program used to include the System namespace in the program.
Imports System
Every program must contain a ___ that contains the __ and ___ that your program uses.
module of a class, data, procedures
It generally would contain more than one procedure.
Classes or Modules
contain the executable code, or in other words, they define the behavior of the class.
Procedures
the entry point for all VB.Net programs.
Main procedure
It states what the module or class will do when executed.
Main procedure
It is a method of the Console class defined in the System namespace.
WriteLine
The last line __ is for the VB.NET Users.
Console.ReadKey()
This will prevent the screen from running and closing quickly when the program is launched from Visual Studio .NET.
Console.ReadKey()
It is an object-oriented programming language.
VB.Net
In Object-Oriented Programming methodology, a program consists of various __ that interact with each other by means of actions.
objects
The actions that an object may take are called
Methods
VB.Net program can be defined as a collection of __ that communicate via invoking each other’s methods
objects
It have states and behaviors.
Objects
an instance of a class.
object
Can be defined as a template/blueprint that describes the behaviors/states that object of its type support.
Class
is basically a behavior.
method
It is in __ where the logics are written, data is manipulated and all the actions are executed.
methods
Each object has its unique set of instant variables.
Instant Variables
is created by the values assigned to these instant variables.
object’s state
It indicates the entry point of VB.Net program
Sub Main
They are called fields
Data members
They are called methods.
procedure members
can be invoked without creating an object of the class.
Shared methods or static methods