Вы находитесь на странице: 1из 20

26.

Control website access


Keyword Blocking (Halangan /Tapisan Kata Kunci) Can lead to criminal act such as exploitation towords women/children. Can lead sexual addiction Can develop low moral values / immorality. Site blocking and web rating system.

27. NETWORKING
Type of Computer Networks LAN, MAN, WAN Type of Network Architecture PEER TO PEER & CLIENT SERVER Type of Network Topology BUS , RING, STAR Network Communications Technology INTERNET, INTRANET, EXTRANET

PRIMARY STORAGE
ROM (Random Access Memory) Permanently stored inside the computer. Non Volatile. Programs in ROM have been pre recorded. stored the data n programs by manufacturer and cannot be changed. RAM (Read Only Memory) Main memory in a computer, can be read and written. Volatile. Store data n programs can be accessed directly by the processor. Hold temporary instructions and data needed to complete tasks.

MEDIUM OF DELIVERY
WEB BASED LIMITED IN GRAPHICS , VIDEO, SIZE AND RESOLUTION. INFORMATION CAN BE CHANGED, DAMAGED AND DELETED. INFORMATION CAN BE UPDATED EASILY. CD BASED CAN STORE HIGH QUALITY / RESOLUTION GRAPHICS AND VIDEO. INFORMATION PERMANENT AND CANNOT BE CHANGED. INFORMATION DIFFICULT TO UPDATED OR CANNOT BE UPDATED.

Structured Approach is a computer programming technique in which the program is divided into modules like function or subroutine.
Sub GetInput (x as integer) Input Number 1 ; x Input Number 2 ; y End Sub Function Process (x as integer) as integer Process = x + y End Function Sub DisplayResult (x as integer) Print x;+;y;=;z End Sub

GetInput (x, y) z = Process (x, y) DisplayResult (z)

Object Oriented Approach is a computer programming techniques based on the concept of an object that combine both data and the function into a single unit.
Class aCircle
Const PI = 3.142 Dim mRadius As Single Dim myCircle As New aCircle Function Diameter() As Single Return 2 * mRadius End Function Function Area() As Single Return PI * mRadius * mRadius End Function Function Circumference() As Single Return 2 * PI * mRadius End Function End Class myCircle.Radius = 10

Print myCircle.Area Print myCircle.Diameter Print myCircle.Circumference

PROGRAMMING APPROCACH
STRUCTURED USES A TOP DOWN DESIGN MODEL DIVIDES PROGRAMMING PROBLEM INTO MODULE LIKE FUNCTION. SUITABLE FOR SMALL AND MEDIUM PROJECT
OOP (OBJECT ORIENTED APPROACH)

USES OBJECT APPORACH. PACKAGES THE DATA AND FUNCTION INTO A SINGLE UNIT.

SUITABLE FOR BIG PROJECT

Primary key is a field that contains a value uniquely identifies each record in the table.

A foreign key is a field in a relational table that matches the primary key column of another table.

Data types Integer (Number) Double (Number) String (Text)

Explanation Integer data type contains any whole number value that does not have any frictional part. Double data type contains any decimal number value that has a fractional part. String data type contains a sequence of character.

Boolean (Logical Value)


Date

Boolean data type contains either a true or false value.


Date data type contains date and time value.

An operator is a symbol that causes VB to take an action

Mathematical Operator Comparison Operator Logical Operator

to perform mathematical operations to compare two value and return value whether true or false

to perform logical operations and return value whether true or false

Mathematical Operator

Meaning

Logical Operator

Meaning

Plus

And

And Operator

Minus
Multiply

Or
Not

Or Operator
Not Operator

Divide

Comparison Operator

Meaning

Comparison Operator

>

Greater than Less than

>=
<=

< = <>

Greater Than or equal Less Than or equal

Equal Not Equal

TYPES OF OPERATORS
MATHEMATICAL OPERATOR to perform mathematical operations such as plus or subtract. LOGICAL OPERATOR to perform logical operations and return value whether true or false such as checking the condition of two Boolean values , using AND, OR , NOT .

Вам также может понравиться