Skip to content Skip to navigation

Connexions

You are here: Home » Content » computer architecture

Navigation

Content Actions

  • Download module PDF
  • Add to ...
    Add the module to:
    • My Favorites
    • A lens
    • An external social bookmarking service
    • My Favorites (What is 'My Favorites'?)
      'My Favorites' is a special kind of lens which you can use to bookmark modules and collections directly in Connexions. 'My Favorites' can only be seen by you, and collections saved in 'My Favorites' can remember the last module you were on. You need a Connexions account to use 'My Favorites'.
    • A lens (What is a lens?)

      Definition of a lens

      Lenses

      A lens is a custom view of Connexions content. You can think of it as a fancy kind of list that will let you see Connexions through the eyes of organizations and people you trust.

      What is in a lens?

      Lens makers point to Connexions materials (modules and collections), creating a guide that includes their own comments and descriptive tags about the content.

      Who can create a lens?

      Any individual Connexions member, a community, or a respected organization.

      What are tags? tag icon

      Tags are descriptors added by lens makers to help label content, attaching a vocabulary that is meaningful in the context of the lens.

    • External bookmarks
  • E-mail the author
  • Rate this module (How does the rating system work?)

    Rating system

    Ratings

    Ratings allow you to judge the quality of modules. If other users have ranked the module then its average rating is displayed below. Ratings are calculated on a scale from one star (Poor) to five stars (Excellent).

    How to rate a module

    Hover over the star that corresponds to the rating you wish to assign. Click on the star to add your rating. Your rating should be based on the quality of the content. You must have an account and be logged in to rate content.

    (0 ratings)

Recently Viewed

This feature requires Javascript to be enabled.

computer architecture

Module by: Anh Duong

Summary: computer architecture

Computer Hardware

A computer may be divided into six logical units.

Input Unit

  • Obtain information from input devices: keyboards and mouse devices.
  • Place the information at the disposal of the other units to be processed.

Output Unit

  • Take information that has been processed.
  • Place it on output devices: displayed on screens, printed on paper.

Memory Unit

  • RAM (random access memory) is volatile, stores program and data.
  • ROM (read only memory) is non-volatile, contains fundamental instructions.

Arithmetic and Logic Unit (ALU)

  • Perform all the arithmetic and logic operations: addition, subtraction, comparison, etc..

CPU

  • Tell the input unit when information should be read into the memory unit.
  • Tell the ALU when information from the memory should be used in calculations.
  • Tell the output unit when to send information from the memory unit to certain output devices.

Secondary Storage.

  • Permanent storage areas for programs and data: magnetic tapes, magnetic hard disks, floppy disk, CD ROM

Computer Software

  • A computer program: set of instructions used to operate a computer to produce a specific result.
  • Computer programming: writing computer programs.
  • Programming languages: languages used to create computer programs.

Machine Languages

Example: 0101010 000000000001 000000000010

  • The lowest level of computer languages.
  • Programs consist of entirely of 1s and 0s.
  • Programs can control directly to the computer’s hardware.
  • Machine language instructions consist of two parts:
    • Instruction part (opcode) is the leftmost group of bits and tells the computer the operation to be performed.
    • Address part specifies the memory address of the data to be used in the instruction.

Assembly Languages

Example:

LOAD BASEPAY

ADD OVERPAY

STORE GROSSPAY

  • Perform the same tasks as machine languages, but use symbolic names for opcodes and operands.
  • An assembly language program must be translated into a machine language program.

Translation program (assembler)Machine languageprogramAssembly languageprogram

  • Machine languages and assembly languages are called low-level languages since they are closest to computer hardware.

High-level Programming Languages

  • Create computer programs using instructions that much easier to understand: English-like included with mathematical notations.
  • Programs written in high-level languages must be translated into a low level language using a program called a compiler.
  • Each line in a high-level language program is called a statement.

Ex: Result = (First + Second)*Third.

Application and System Software

  • Application software: perform particular tasks required by the users.
  • System software: must be available to any computer system to operate. The most important system software is the operating system (MS-DOS, UNIX, MS WINDOWS, MS WINDOWS NT)
  • Multitasking systems: operating systems allow user to run multiple programs. graphics1.png

Comments, questions, feedback, criticisms?

Send feedback