Saturday, March 14, 2015

Acknowledgements

This will be my final post in this blog. I just want to say thank you for those who viewed my blog. It's a big appreciation and I am very grateful. I'd also like to thank my friends. Even though it's just a project in ordinary Comp Sci 1, this project wouldn't have been possible without them for motivating me to aim high and aim for the best. And lastly, I would like to thank Sir Tom, my Comp Sci teacher. Thank you Sir for teaching us Comp Sci this school year. It has been very memorable and I hope that I wouldn't forget your teachings. Thank you everyone. It has been a great time creating blogs. Bye-Bye.

Review

As we approach the end of my blog, let us have a recap of the last 8 posts.
These are:
  1. Computer System +Hardware Specs
  2. Software
  3. Data Representation
  4. Binary Conversion
  5. Machine Cycle
  6. Networking 
  7. Computer System Components, and
  8. Installing OS
Sources:
  • Google Images
  • moodle.pshs-brc.edu.ph
  • Google

Installing OS

Another feature to be taught in Comp Sci is installing OS.

The steps are:

  1. You must have an installer, or insert Boot Disk
  2. Configure BIOS
  3. Then follow step by step procedure.
  4. Install needed drivers
  5. install necessary applications.
Note: Know the System Requirements of the OS you're installing. Follow the procedures carefully. Never skip a procedure. You might need to restart your device in order for changes to take effect.

Computer System Unit Components

The Computer System is a complex system and is therefor composed of several divers and cards in the Motherboard.

These are :

  1. Power Box - to check the voltage of the computer system
  2. RAM - Main Memory
  3. Processor - CPU
  4. Hard Disk - for secondary memory
  5. DVD Drive - for optical discs
  6. SATA Cables
  7. Fan - for cooling
  8. Video Card - to enhance graphics
  9. Network Card - to enable ethernet
  10. Audio Card - to enhance sound

Networking

Networking is a group of two or more computer systems linked together. Through networking, you can also transfer data in the form of packets which are routed between an origin and a destination on the internet or any other packet-switched network.

There are many types of networks

  • LAN or Local Area Network
    • This is commonly used when you want to play games using networking in multiplayer. LAN  connects network devices over a short distance.



  • MAN or Metropolitan Area Network
    • a network spanning a large area such as a City. This is probably owned and operated by a single entity such as Government Bodies or large corporations. The MAN is considered the Hybrid of a LAN and a WAN 







  • WAN or Wide Area Network
    • This is the largest of the three. The WAN spans a large distance such as the Internet.
and there are more such as 
  • WLAN (Wireless Local Area Network)
  • CAN - Campus Area Network
  • SAN - Storage Area Network
  • PAN - Personal Area Network
  • System Area Network







    Machine Cycle

    Now we're done with Binary, let's move on to Machine Cycle.

    Machine cycle is the basic process performed by a CPU which is the main logic unit of a computer. Machine Cycle only consists of four processes, mainly:



    1. Fetch - retrieve an instruction from the main memory
    2. Decode - translate the retrieved instruction into a series of computer commands.
    3. Execute - execute the computer commands
    4. Store - write the results back in memory.

    Binary conversion

    We probably discussed about how binary is defined and how it is transferred. Now we are going to discuss how the other types of data.

    Besides Binary which consists of only 1 and 0, there is also Decimal which consists of the normal numbers we use today. Decimal is indicated by subscript 10 where Binary subscript 2. Aside from Decimal, there is also Hex which is indicated by subscript 16.



    To convert Binary to Decimal you simply have to consider the place value. How about vice versa? You just simply divide using the continuous division method the decimal number by 2 and whatever remainder you get is the binary itself. For example: 3/2 is equal to 1 r.1 then the binary form is 11.

    To convert Decimal to Hex, remember that 4 bits is equal to 1 hex digit. for hex to decimal, remember that 1 hex digit is 4 bits.

    To convert Binary to Hex, do the process of Binary to Decimal followed by Decimal to Hex. To convert Hex to Binary, do the process of Hex to Decimal followed by Decimal to Binary.