schema johor

Upload: majpym

Post on 04-Jun-2018

241 views

Category:

Documents


0 download

TRANSCRIPT

  • 8/13/2019 Schema Johor

    1/20

    26. Control website access

    Keyword Blocking

    (Halangan /Tapisan Kata Kunci)

    Can lead to criminalact such as exploitation

    towords women/children.

    Can lead sexual addiction

    Can develop low moral values / immorality.Site blocking andweb rating system.

  • 8/13/2019 Schema Johor

    2/20

    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

  • 8/13/2019 Schema Johor

    3/20

  • 8/13/2019 Schema Johor

    4/20

  • 8/13/2019 Schema Johor

    5/20

  • 8/13/2019 Schema Johor

    6/20

    PRIMARY STORAGE

    ROM (Random Access Memory) RAM (Read Only Memory)

    Permanently stored inside the computer.

    Non Volatile.

    Main memory in a computer, can be read

    and written. Volatile.

    Programs in ROM have been pre

    recorded. stored the data n programs by

    manufacturer and cannot be changed.

    Store data n programs can be accessed

    directly by the processor.

    Hold temporary instructions and data

    needed to complete tasks.

  • 8/13/2019 Schema Johor

    7/20

  • 8/13/2019 Schema Johor

    8/20

  • 8/13/2019 Schema Johor

    9/20

    MEDIUM OF DELIVERY

    WEB BASED

    LIMITED IN GRAPHICS ,

    VIDEO, SIZE AND

    RESOLUTION. INFORMATION CAN BE

    CHANGED, DAMAGED AND

    DELETED.

    INFORMATION CAN BEUPDATED EASILY.

    CD BASED

    CAN STORE HIGH QUALITY /

    RESOLUTION GRAPHICS

    AND VIDEO. INFORMATION PERMANENT

    AND CANNOT BE CHANGED.

    INFORMATION DIFFICULT

    TO UPDATED OR CANNOTBE UPDATED.

  • 8/13/2019 Schema Johor

    10/20

    Structured Approachis a computer programming

    techniquein which the program is divided

    into moduleslike functionor subroutine.

    GetInput (x, y)

    z = Process (x, y)

    DisplayResult (z)

    SubGetInput (x as integer)

    Input Number 1 ; xInput Number 2 ; y

    End Sub

    FunctionProcess (x as integer) as integer

    Process = x + yEnd Function

    SubDisplayResult (x as integer)

    Print x;+;y;=;z

    End Sub

  • 8/13/2019 Schema Johor

    11/20

    Object Oriented Approachis a computer programming

    techniquesbased on the concept of an object thatcombine both dataand the functioninto a single unit.

    Class aCircleConst PI = 3.142

    Dim mRadius As Single

    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

    Dim myCircle As New aCircle

    myCircle.Radius = 10

    Print myCircle.Area

    Print myCircle.Diameter

    Print myCircle.Circumference

  • 8/13/2019 Schema Johor

    12/20

    PROGRAMMING APPROCACH

    STRUCTURED

    USES A TOPDOWN

    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 ANDFUNCTION INTO A SINGLE

    UNIT.

    SUITABLE FOR BIG PROJECT

  • 8/13/2019 Schema Johor

    13/20

    Primary key is a field thatcontains a value uniquely

    identifies each record

    in the table.

    A foreign key is a field ina relational table that

    matches the primary

    key column of another table.

  • 8/13/2019 Schema Johor

    14/20

  • 8/13/2019 Schema Johor

    15/20

  • 8/13/2019 Schema Johor

    16/20

    Data types Explanation

    Integer(Number)

    Integer data type contains any wholenumbervalue that does not haveany frictional part.

    Double

    (Number)

    Double data type contains anydecimal numbervalue that has a

    fractional part.

    String(Text)

    String data type contains a sequenceof character.

    Boolean(LogicalValue)

    Boolean data type contains either atrueor falsevalue.

    DateDate data type contains dateandtimevalue.

  • 8/13/2019 Schema Johor

    17/20

    Mathematical Operator

    ComparisonOperator

    Logical Operator

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

    to perform mathematical

    operations

    to comparetwo value and

    return value whether true or false

    to perform logical operationsand

    return value whether true or false

  • 8/13/2019 Schema Johor

    18/20

    MathematicalOperator

    MeaningLogical

    OperatorMeaning

    + Plus AndAnd

    Operator

    - Minus OrOr

    Operator

    * Multiply Not

    Not

    Operator

    / Divide

  • 8/13/2019 Schema Johor

    19/20

    ComparisonOperator

    MeaningComparison

    Operator

    >

    Greater

    than>=

    Greater

    Than or

    equal

    < Less than

  • 8/13/2019 Schema Johor

    20/20

    TYPES OF OPERATORS

    MATHEMATICAL OPERATOR

    to perform mathematical

    operations such as plus orsubtract.

    LOGICAL OPERATOR

    to perform logical

    operationsand returnvalue whether true or false

    such as checking the

    condition of two Boolean

    values , using AND, OR ,NOT .