VARIABLES
variables must be:
declared (the type of variable)
defined (values assigned to a variable)
before it can be used in a program.
DATA TYPES
C++ supports the following inbuilt data types:-
int (to store integer values),
float (to store decimal values),
char (to store characters),
bool (to store Boolean value either 0 or 1) and
void (signifies absence of information).
KEYWORDS
reserved wordsjavascript:void(0)
IDENTIFIERS
name of functions, variables, classes, arrays etc.
CONSTANTS
fixed values which cannot change.
Showing posts with label notes. Show all posts
Showing posts with label notes. Show all posts
Monday, July 2, 2012
Friday, June 29, 2012
Layered Web Applications with ASP.NET
In the diagram in figure 1 you see a process go around in a counter clockwise direction. The process goes through the following 6 steps:
- The Presentation layer asks the BLL for some object, for example a contact person.
- The BLL can optionally perform some validation (for example, is the current user allowed to make this call?) and then forwards the request to the DAL.
- The DAL connects to the database and asks it for a specific record.
- When the record is found, it is returned from the database to the DAL.
- The DAL wraps the database data in a custom object and returns it to the BLL.
- Finally, the BLL returns the object to the Presentation layer, where it could be displayed on a web page for example.
Subscribe to:
Posts (Atom)