SlideShare une entreprise Scribd logo
1  sur  31
CS 3112 OPERATING SYSTEM Assignment # 1 Submitted to: Mr. Jomel Penalba Submitted by: Mark Bryan F. Ramirez BSCS – 3E
1. How are a computer's internal components physically linked? Illustrate the concept by describing a complete machine cycle. 2. On most computers, all internal components are designed around a common word size. Why? Explain how a computer word size affects its processing speed, memory, capacity, precision, and instruction set size. 3. What is meant by computer's architecture? 4. Discuss the ff: terms: Motherboard, slot, bus, network, signal, local area network, wide area network, network server, workstation, host. 5. Briefly describe the different network topologies.
A  personal computer  is made up of multiple physical components of  computer hardware , upon which can be installed an  operating system  and a multitude of  software  to perform the operator's desired functions. Though a PC comes in many different forms, a typical  personal computer  consists of a  case  or chassis in a tower shape (desktop), containing components such as a  motherboard . 1. How are a computer's internal components physically linked? Illustrate the concept by describing a complete machine cycle.
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Motherboard The motherboard is the main component inside the case. It is a large rectangular board with integrated circuitry that connects the rest of the parts of the computer including the  CPU , the  RAM , the disk drives ( CD ,  DVD ,  hard disk , or any others) as well as any peripherals connected via the ports or the expansion slots. Components directly attached to the motherboard include:   • The  central processing unit  ( CPU )  performs most of the calculations which enable a computer to function, and is sometimes referred to as the "brain" of the computer. It is usually  cooled  by a heat sink and fan.  • The  chip set  mediates communication between the CPU and the other components of the system, including main memory.  •  RAM  (Random Access Memory) stores all running processes (applications) and the current running OS. COMPONENTS
•  The  BIOS  includes boot  firmware  and power management. The  B asic  I nput  O utput  S ystem tasks are handled by  operating system  drivers. •  Internal  Buses  connect the CPU to various internal components and to expansion cards for graphics and sound.    ○  Current   ▪ The  north bridge  memory controller, for RAM and PCI  Express  ▪  PCI Express , for expansion cards such as  graphics and physics processors, and high-end  ` network interfaces   ▪  PCI , for other expansion cards ▪  SATA , for disk drives    ○   Obsolete     ▪  ATA  (superseded by SATA)   ▪  AGP  (superseded by PCI Express)   ▪  VLB  VESA Local Bus (superseded by AGP)   ▪  ISA  (expansion card slot format obsolete in PCs, but  still used in industrial computers)
•   External Bus Controllers  support ports for external peripherals. These ports may be controlled directly by the  south bridge  I/O controller or based on expansion cards attached to the motherboard through the PCI bus.    ○   USB   ○   FireWire   ○   eSATA   ○   SCSI
Power supply •   A power supply unit (PSU) converts alternating current (AC) electric power to low-voltage DC power for the internal components of the computer. Some power supplies have a switch to change between 230 V and 115 V. Other models have automatic sensors that switch input voltage automatically, or are able to accept any voltage between those limits. Power supply units used in computers are nearly always  switch mode power supplies (SMPS) . The SMPS provides regulated direct current power at the several voltages required by the motherboard and accessories such as disk drives and cooling fans.
Removable media devices   •  CD  (compact disc) - the most common type of removable media, suitable for music and data.    ○   CD-ROM Drive  - a device used for reading data from a CD.   ○   CD Writer  - a device used for both reading and writing data to and  from a CD.   •   DVD  (digital versatile disc) - a popular type of removable media that is the same dimensions as a CD but stores up to 12 times as much information. It is the most common way of transferring digital video, and is popular for data storage.    ○   DVD-ROM Drive  - a device used for reading data from a DVD.   ○   DVD Writer  - a device used for both reading and writing data to  and from a DVD. ○   DVD-RAM Drive  - a device used for rapid writing and reading of  data from a special type of DVD.   •   Blu-ray Disc  - a high-density optical disc format for data and high-definition video. Can store 70 times as much information as a CD.    ○   BD-ROM Drive  - a device used for reading data from a Blu-ray  disc.   ○   BD Writer  - a device used for both reading and writing data to and  from a Blu-ray disc.
•   HD DVD  - a discontinued competitor to the Blu-ray format.   •   Floppy disk  - an outdated storage device consisting of a thin disk of a flexible magnetic storage medium. Used today mainly for loading RAID drivers.   •   Iomega Zip drive  - an outdated medium-capacity removable disk storage system, first introduced by Iomega in 1994.   •   USB flash drive  - a flash memory data storage device integrated with a USB interface, typically small, lightweight, removable, and rewritable. Capacities vary, from hundreds of megabytes (in the same ballpark as CDs) to tens of gigabytes (surpassing, at great expense, Blu-ray discs).   •   Tape drive  - a device that reads and writes data on a magnetic tape, used for long term storage and backups.
Secondary storage Hardware that keeps data inside the computer for later use and remains persistent even when the computer has no power.   •   Hard disk  - for medium-term storage of data.   •   Solid-state drive  - a device similar to hard disk, but  containing no moving parts and stores data in a digital  format.   •   RAID array controller  - a device to manage several  internal or external hard disks and optionally some  peripherals in order to achieve performance or reliability  improvement in what is called a RAID array.
Sound card Enables the computer to output sound to audio devices, as well as accept input from a  microphone . Most modern computers have sound cards built-in to the motherboard, though it is common for a user to install a separate sound card as an upgrade. Most sound cards, either built-in or added, have surround sound capabilities.
2. What is meant by computer's architecture? In  computer science  and  computer engineering ,  computer architecture  or  digital computer organization  is the conceptual design and fundamental operational structure of a  computer  system. It is a  blueprint  and functional description of requirements and design implementations for the various parts of a computer, focusing largely on the way by which the  central processing unit  (CPU) performs internally and accesses  addresses in memory . It may also be defined as the science and art of selecting and interconnecting hardware components to create computers that meet functional, performance and cost goals.
Computer architecture comprises at least three main subcategories:   Instruction set architecture , or ISA, is the abstract image of a computing system that is seen by a  machine language  (or  assembly language ) programmer, including the  instruction set ,  word size ,  memory address modes ,  processor registers , and address and data formats.   •  Microarchitecture , also known as  Computer  organization  is a lower level, more concrete and  detailed, description of the system that involves how  the constituent parts of the system are interconnected  and how they interoperate in order to implement the  ISA. The size of a computer's  cache  for instance, is an  organizational issue that generally has nothing to do  with the ISA.
•   System Design  which includes all of the other hardware components within a computing system such as: 1. System interconnects such as  computer buses  and  switches 2.  Memory controllers  and hierarchies 3. CPU off-load mechanisms such as  direct memory access   (DMA) 4. Issues like  multiprocessing . Once both ISA and microarchitecture have been specified, the actual device needs to be designed into hardware. This design process is called  implementation . Implementation is usually not considered architectural definition, but rather hardware  design engineering .
Implementation can be further broken down into three (not fully distinct) pieces: •   Logic Implementation  — design of blocks defined in the  micro architecture at (primarily) the register-transfer and gate  levels. •   Circuit Implementation  — transistor-level design of basic  elements (gates, multiplexers, latches etc) as well as of some  larger blocks ( ALUs , caches etc) that may be implemented at this  level, or even (partly) at the physical level, for performance  reasons. •   Physical Implementation  — physical circuits are drawn out,  the different circuit components are placed in a chip  floorplan  or  on a board and the wires connecting them are routed.
3 . Discuss the ff: terms: Motherboard, slot, bus, network, signal, local area network, wide area network, network server, workstation, host.
Motherboard The motherboard serves to connect all of the parts of a computer together. The  CPU ,  memory ,  hard drives ,  optical drives ,  video card ,  sound card  and other ports and expansion cards all connect to the motherboard directly or via cables.  The motherboard can be thought of as the "back bone" of the computer.
Local Area Network (LAN)   A  local area network (LAN)  supplies networking capability to a group of computers in close proximity to each other such as in an office building, a school, or a home. A LAN is useful for sharing resources like files, printers, games or other applications. A LAN in turn often connects to other LANs, and to the Internet or other  WAN .  Most local area networks are built with relatively inexpensive hardware such as  Ethernet  cables, network adapters, and hubs. Wireless LAN and other more advanced LAN hardware options also exist.  Specialized operating system software may be used to configure a local area network. For example, most flavors of Microsoft Windows provide a software package called  Internet Connection Sharing (ICS)  that supports controlled access to LAN resources.
The term  LAN party  refers to a multiplayer gaming event where participants bring their own computers and build a temporary LAN. Also Known As:  local area network Examples:  The most common type of local area network is an Ethernet LAN. The smallest home LAN can have exactly two computers; a large LAN can accommodate many thousands of computers. Many LANs are divided into logical groups called subnets. An Internet Protocol (IP) "Class A" LAN can in theory accommodate more than 16 million devices organized into subnets.
Network Server A  network server  is a computer designed to process requests and deliver data to other (client) computers over a local network or the Internet. Examples include Web servers, proxy servers, and FTP servers. Not only should you be familiar with using servers on the Internet, an increasing number of people have learned to set up network servers for business and personal uses.
Wide Area Network (WAN) A  WAN  spans a large geographic area, such as a state, province or country. WANs often connect multiple smaller networks, such as local area networks (LANs) or metro area networks (MANs).  The world's most popular WAN is the Internet. Some segments of the Internet, like  VPN -based  extranets , are also WANs in themselves. Finally, many WANs are corporate or research networks that utilize  leased lines .  WANs generally utilize different and much more expensive networking equipment than do LANs. Key technologies often found in WANs include  SONET , Frame Relay, and  ATM .
Computer Workstation A  computer   workstation  is an ergonomically designed area of an office which accommodates a  desktop computer  and all of its peripherals.  Ergonomic  design means that the user shouldn't have to assume uncomfortable positions in order to perform his or her duties. A good computer workstation provides a comfortable and adjustable  task chair , a properly positioned monitor, a keyboard shelf, a mousepad with wrist rest and peripherals (printers, speakers, disk drives, etc.) which are easily accessible.
HOST Hosts  devices that connect directly to a network segment. These hosts include computers, both clients and servers, printers, scanners and many other devices. These devices provide the users with connection to the network, with which the users share, create and obtain information.
4. Briefly describe the different network topologies. TOPOLOGY  – defines the structure of the network. There are two parts to the topology definition:  the physical topology  which is the actual layout of the wire (media) and  the logical topology  which defines how the media is accessed by the hosts. It refers also to how computers are being connected with each other.
The types of topologies: 1.   BUS topology  – uses a single backbone segment (length of  cable) that all the hosts connect to directly. The idea is that is  just like riding a bus. It has only one driver and many  passengers who are riding. 2.   RING topology  – connects one host to the next and the last  host to the first. This creates a physical ring of cable.  3.   STAR topology  – connects all cables to a central point of  concentration. This point is usually a hub or switch. It has a  focal point where all the resources are there.
4.  EXTENDED STAR topology  – uses the star topology  to be created. It links individual stars together by  linking the hubs/ switches. This will extend the length  of the network. 5.  HIERARCHICAL topology   - is created similar to an  extended star but instead of linking the hubs/ switches  together, the system is linked to a computer that  controls the traffic on the topology. 6.  MESH topology  – is used when there can be  absolutely no break in communications. So as you can  see in the graphic, each host has its connections to all  other hosts. This also reflects the design of the internet  which has multiple paths to any one location.
Network Interface Card (NIC)  – is a printed circuit board that fits into the expansion slot of a bus on a computer’s motherboard or peripheral device. It is considered to be found in Layer 2 devices because each individual NIC throughout the world carries a unique code, called the  Media Access Control  (MAC) address. You can build computer networks with many different media types. Each media has advantages and disadvantages. What is an advantage for one media (category 5 cost) might be a disadvantage for another (fiber optic cost). Some of the advantages and disadvantages are: •   Cost  •   Ease of installation •   Cable length
REPEATER  - is an  electronic  device that receives a  signal  and  retransmits  it at a higher level and/or higher power, or onto the other side of an obstruction, so that the signal can cover longer distances. It is used when the type of cable (CAT5 UTP) is long. CAT5 UTP has a maximum length of 100 meters (approximately 333 feet). The purpose of a repeater is regenerate and retimes network signals at the bit level to allow them to travel a longer distance on the media.
[object Object],[object Object],[object Object],[object Object]
BRIDGE  – refers to a device which has just two parts. It filters the frames and how this is actually accomplished. SWITCH  – is to concentrate connectivity, while making data transmission more efficient. A device that is able to combine the connectivity of a hub with the traffic regulation of a bridge  on each port. ROUTER  – the first device that you will work with that us at the OSI’s network layer, or other known as Layer 3. The purpose of a router is to examine incoming packets, choose the  best path for them in a network and then switch them to the  proper outgoing port

Contenu connexe

Tendances

Computer hardware components by ni3
Computer hardware components by ni3Computer hardware components by ni3
Computer hardware components by ni3NITIN RAUT
 
Core Hardware: Lecture 1
Core Hardware: Lecture 1Core Hardware: Lecture 1
Core Hardware: Lecture 1Awinash Goswami
 
PC Hardware Overview
PC Hardware OverviewPC Hardware Overview
PC Hardware OverviewPrabu U
 
20 the components of the system unit
20 the components of the system unit20 the components of the system unit
20 the components of the system unitMrQaz996
 
Core Hardware: Lecture 2
Core Hardware: Lecture 2Core Hardware: Lecture 2
Core Hardware: Lecture 2Awinash Goswami
 
2.1 system unit components
2.1   system unit components2.1   system unit components
2.1 system unit componentsWaqar246
 
The Components of the System Unit
The Components of the System Unit The Components of the System Unit
The Components of the System Unit Nurul Atikah
 
Computer hardware intro
Computer hardware introComputer hardware intro
Computer hardware introUsama Khan
 
Core Hardware: Lecture 7
Core Hardware: Lecture 7Core Hardware: Lecture 7
Core Hardware: Lecture 7Awinash Goswami
 
DESTOP COMPUTER V/S LAPTOPS - Stegin.joy@bca.christuniversity.in
 DESTOP COMPUTER V/S LAPTOPS - Stegin.joy@bca.christuniversity.in DESTOP COMPUTER V/S LAPTOPS - Stegin.joy@bca.christuniversity.in
DESTOP COMPUTER V/S LAPTOPS - Stegin.joy@bca.christuniversity.inchrist university
 
Core Hardware: Lecture 4
Core Hardware: Lecture 4Core Hardware: Lecture 4
Core Hardware: Lecture 4Awinash Goswami
 
Parts of the system unit
Parts of the system unitParts of the system unit
Parts of the system unitSamantha Regis
 
C language computer introduction to the computer hardware
C language  computer introduction to the computer hardwareC language  computer introduction to the computer hardware
C language computer introduction to the computer hardwareNIKHIL KRISHNA
 
Computer Hardware
Computer HardwareComputer Hardware
Computer Hardwarekarlp
 
Core Hardware: Lecture 6
Core Hardware: Lecture 6Core Hardware: Lecture 6
Core Hardware: Lecture 6Awinash Goswami
 
Basic computer hardware and software
Basic computer hardware and softwareBasic computer hardware and software
Basic computer hardware and softwareCamille Hazellie
 

Tendances (20)

Ppt hardwear
Ppt hardwearPpt hardwear
Ppt hardwear
 
Computer hardware components by ni3
Computer hardware components by ni3Computer hardware components by ni3
Computer hardware components by ni3
 
Ch6
Ch6Ch6
Ch6
 
Core Hardware: Lecture 1
Core Hardware: Lecture 1Core Hardware: Lecture 1
Core Hardware: Lecture 1
 
PC Hardware Overview
PC Hardware OverviewPC Hardware Overview
PC Hardware Overview
 
20 the components of the system unit
20 the components of the system unit20 the components of the system unit
20 the components of the system unit
 
Core Hardware: Lecture 2
Core Hardware: Lecture 2Core Hardware: Lecture 2
Core Hardware: Lecture 2
 
2.1 system unit components
2.1   system unit components2.1   system unit components
2.1 system unit components
 
The Components of the System Unit
The Components of the System Unit The Components of the System Unit
The Components of the System Unit
 
Computer hardware intro
Computer hardware introComputer hardware intro
Computer hardware intro
 
Core Hardware: Lecture 7
Core Hardware: Lecture 7Core Hardware: Lecture 7
Core Hardware: Lecture 7
 
DESTOP COMPUTER V/S LAPTOPS - Stegin.joy@bca.christuniversity.in
 DESTOP COMPUTER V/S LAPTOPS - Stegin.joy@bca.christuniversity.in DESTOP COMPUTER V/S LAPTOPS - Stegin.joy@bca.christuniversity.in
DESTOP COMPUTER V/S LAPTOPS - Stegin.joy@bca.christuniversity.in
 
Core Hardware: Lecture 4
Core Hardware: Lecture 4Core Hardware: Lecture 4
Core Hardware: Lecture 4
 
Parts of the system unit
Parts of the system unitParts of the system unit
Parts of the system unit
 
C language computer introduction to the computer hardware
C language  computer introduction to the computer hardwareC language  computer introduction to the computer hardware
C language computer introduction to the computer hardware
 
Computer Hardware
Computer HardwareComputer Hardware
Computer Hardware
 
Computer Hardware Components
Computer Hardware ComponentsComputer Hardware Components
Computer Hardware Components
 
Core Hardware: Lecture 6
Core Hardware: Lecture 6Core Hardware: Lecture 6
Core Hardware: Lecture 6
 
Basic computer hardware and software
Basic computer hardware and softwareBasic computer hardware and software
Basic computer hardware and software
 
System Unit (E-Learning)
System Unit (E-Learning)System Unit (E-Learning)
System Unit (E-Learning)
 

En vedette (7)

Fashion
FashionFashion
Fashion
 
Introduction to padrino
Introduction to padrinoIntroduction to padrino
Introduction to padrino
 
Communism!
Communism!Communism!
Communism!
 
Colors
ColorsColors
Colors
 
Primarysecondarysources
PrimarysecondarysourcesPrimarysecondarysources
Primarysecondarysources
 
Culture changes2
Culture changes2Culture changes2
Culture changes2
 
Costas level-of-question-and-thinking-1
Costas level-of-question-and-thinking-1Costas level-of-question-and-thinking-1
Costas level-of-question-and-thinking-1
 

Similaire à CS 3112 - First Assignment -Mark Bryan F. Ramirez/BSCS-3E

Unit 3- Internal components.
Unit 3- Internal components.Unit 3- Internal components.
Unit 3- Internal components.georgehurrell99
 
PC hardware components ppt slide_week2.ppt
PC hardware components ppt slide_week2.pptPC hardware components ppt slide_week2.ppt
PC hardware components ppt slide_week2.pptvimala elumalai
 
Components of laptop.pptx
Components of laptop.pptxComponents of laptop.pptx
Components of laptop.pptxSairish khokhar
 
04 connector and components
04 connector and components04 connector and components
04 connector and componentsAshik Iqbal
 
Parts of computer (Hardware)
Parts of computer (Hardware)Parts of computer (Hardware)
Parts of computer (Hardware)Mac Mac
 
Parts of a computer
Parts of a computerParts of a computer
Parts of a computerkjosorio00
 
Motherboard2
Motherboard2Motherboard2
Motherboard2pompo213
 
Personal computer-hardware
Personal computer-hardwarePersonal computer-hardware
Personal computer-hardwareSantosh Kulkarni
 
Lesson 3-What are the hardware components of computer.pptx
Lesson 3-What are the hardware components of computer.pptxLesson 3-What are the hardware components of computer.pptx
Lesson 3-What are the hardware components of computer.pptxJasonbaloro
 
Motherboard
MotherboardMotherboard
Motherboardayestas1
 
Cisco task 1 power point
Cisco task 1 power pointCisco task 1 power point
Cisco task 1 power pointTom Hanstead
 
Cisco task 1 power point
Cisco task 1 power pointCisco task 1 power point
Cisco task 1 power pointTom Hanstead
 
DESKTOP V/S LAPTOP - Stegin.joy@bca.christuniversity.in
DESKTOP V/S LAPTOP - Stegin.joy@bca.christuniversity.inDESKTOP V/S LAPTOP - Stegin.joy@bca.christuniversity.in
DESKTOP V/S LAPTOP - Stegin.joy@bca.christuniversity.inchrist university
 
Basics of Computer! BATRA COMPUTER CENTRE IN AMBALA
Basics of Computer! BATRA COMPUTER CENTRE IN AMBALABasics of Computer! BATRA COMPUTER CENTRE IN AMBALA
Basics of Computer! BATRA COMPUTER CENTRE IN AMBALAjatin batra
 

Similaire à CS 3112 - First Assignment -Mark Bryan F. Ramirez/BSCS-3E (20)

Unit 3- Internal components.
Unit 3- Internal components.Unit 3- Internal components.
Unit 3- Internal components.
 
motherboard.pptx
motherboard.pptxmotherboard.pptx
motherboard.pptx
 
PC hardware components ppt slide_week2.ppt
PC hardware components ppt slide_week2.pptPC hardware components ppt slide_week2.ppt
PC hardware components ppt slide_week2.ppt
 
Components of laptop.pptx
Components of laptop.pptxComponents of laptop.pptx
Components of laptop.pptx
 
04 connector and components
04 connector and components04 connector and components
04 connector and components
 
Ghel os
Ghel osGhel os
Ghel os
 
Ghel os
Ghel osGhel os
Ghel os
 
Parts of computer (Hardware)
Parts of computer (Hardware)Parts of computer (Hardware)
Parts of computer (Hardware)
 
Parts of a computer
Parts of a computerParts of a computer
Parts of a computer
 
Motherboard2
Motherboard2Motherboard2
Motherboard2
 
Personal computer-hardware
Personal computer-hardwarePersonal computer-hardware
Personal computer-hardware
 
Basic Computer 208 part 2
Basic Computer 208 part 2 Basic Computer 208 part 2
Basic Computer 208 part 2
 
Introdusing of computer
Introdusing of computerIntrodusing of computer
Introdusing of computer
 
Lesson 3-What are the hardware components of computer.pptx
Lesson 3-What are the hardware components of computer.pptxLesson 3-What are the hardware components of computer.pptx
Lesson 3-What are the hardware components of computer.pptx
 
Motherboard
MotherboardMotherboard
Motherboard
 
Cisco task 1 power point
Cisco task 1 power pointCisco task 1 power point
Cisco task 1 power point
 
Cisco task 1 power point
Cisco task 1 power pointCisco task 1 power point
Cisco task 1 power point
 
Motherboards
MotherboardsMotherboards
Motherboards
 
DESKTOP V/S LAPTOP - Stegin.joy@bca.christuniversity.in
DESKTOP V/S LAPTOP - Stegin.joy@bca.christuniversity.inDESKTOP V/S LAPTOP - Stegin.joy@bca.christuniversity.in
DESKTOP V/S LAPTOP - Stegin.joy@bca.christuniversity.in
 
Basics of Computer! BATRA COMPUTER CENTRE IN AMBALA
Basics of Computer! BATRA COMPUTER CENTRE IN AMBALABasics of Computer! BATRA COMPUTER CENTRE IN AMBALA
Basics of Computer! BATRA COMPUTER CENTRE IN AMBALA
 

Dernier

Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 

Dernier (20)

Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 

CS 3112 - First Assignment -Mark Bryan F. Ramirez/BSCS-3E

  • 1. CS 3112 OPERATING SYSTEM Assignment # 1 Submitted to: Mr. Jomel Penalba Submitted by: Mark Bryan F. Ramirez BSCS – 3E
  • 2. 1. How are a computer's internal components physically linked? Illustrate the concept by describing a complete machine cycle. 2. On most computers, all internal components are designed around a common word size. Why? Explain how a computer word size affects its processing speed, memory, capacity, precision, and instruction set size. 3. What is meant by computer's architecture? 4. Discuss the ff: terms: Motherboard, slot, bus, network, signal, local area network, wide area network, network server, workstation, host. 5. Briefly describe the different network topologies.
  • 3. A personal computer is made up of multiple physical components of computer hardware , upon which can be installed an operating system and a multitude of software to perform the operator's desired functions. Though a PC comes in many different forms, a typical personal computer consists of a case or chassis in a tower shape (desktop), containing components such as a motherboard . 1. How are a computer's internal components physically linked? Illustrate the concept by describing a complete machine cycle.
  • 4.
  • 5. Motherboard The motherboard is the main component inside the case. It is a large rectangular board with integrated circuitry that connects the rest of the parts of the computer including the CPU , the RAM , the disk drives ( CD , DVD , hard disk , or any others) as well as any peripherals connected via the ports or the expansion slots. Components directly attached to the motherboard include: • The central processing unit ( CPU ) performs most of the calculations which enable a computer to function, and is sometimes referred to as the "brain" of the computer. It is usually cooled by a heat sink and fan. • The chip set mediates communication between the CPU and the other components of the system, including main memory. • RAM (Random Access Memory) stores all running processes (applications) and the current running OS. COMPONENTS
  • 6. • The BIOS includes boot firmware and power management. The B asic I nput O utput S ystem tasks are handled by operating system drivers. • Internal Buses connect the CPU to various internal components and to expansion cards for graphics and sound. ○ Current ▪ The north bridge memory controller, for RAM and PCI Express ▪ PCI Express , for expansion cards such as graphics and physics processors, and high-end ` network interfaces ▪ PCI , for other expansion cards ▪ SATA , for disk drives ○ Obsolete ▪ ATA (superseded by SATA) ▪ AGP (superseded by PCI Express) ▪ VLB VESA Local Bus (superseded by AGP) ▪ ISA (expansion card slot format obsolete in PCs, but still used in industrial computers)
  • 7. External Bus Controllers support ports for external peripherals. These ports may be controlled directly by the south bridge I/O controller or based on expansion cards attached to the motherboard through the PCI bus. ○ USB ○ FireWire ○ eSATA ○ SCSI
  • 8. Power supply • A power supply unit (PSU) converts alternating current (AC) electric power to low-voltage DC power for the internal components of the computer. Some power supplies have a switch to change between 230 V and 115 V. Other models have automatic sensors that switch input voltage automatically, or are able to accept any voltage between those limits. Power supply units used in computers are nearly always switch mode power supplies (SMPS) . The SMPS provides regulated direct current power at the several voltages required by the motherboard and accessories such as disk drives and cooling fans.
  • 9. Removable media devices • CD (compact disc) - the most common type of removable media, suitable for music and data. ○ CD-ROM Drive - a device used for reading data from a CD. ○ CD Writer - a device used for both reading and writing data to and from a CD. • DVD (digital versatile disc) - a popular type of removable media that is the same dimensions as a CD but stores up to 12 times as much information. It is the most common way of transferring digital video, and is popular for data storage. ○ DVD-ROM Drive - a device used for reading data from a DVD. ○ DVD Writer - a device used for both reading and writing data to and from a DVD. ○ DVD-RAM Drive - a device used for rapid writing and reading of data from a special type of DVD. • Blu-ray Disc - a high-density optical disc format for data and high-definition video. Can store 70 times as much information as a CD. ○ BD-ROM Drive - a device used for reading data from a Blu-ray disc. ○ BD Writer - a device used for both reading and writing data to and from a Blu-ray disc.
  • 10. HD DVD - a discontinued competitor to the Blu-ray format. • Floppy disk - an outdated storage device consisting of a thin disk of a flexible magnetic storage medium. Used today mainly for loading RAID drivers. • Iomega Zip drive - an outdated medium-capacity removable disk storage system, first introduced by Iomega in 1994. • USB flash drive - a flash memory data storage device integrated with a USB interface, typically small, lightweight, removable, and rewritable. Capacities vary, from hundreds of megabytes (in the same ballpark as CDs) to tens of gigabytes (surpassing, at great expense, Blu-ray discs). • Tape drive - a device that reads and writes data on a magnetic tape, used for long term storage and backups.
  • 11. Secondary storage Hardware that keeps data inside the computer for later use and remains persistent even when the computer has no power. • Hard disk - for medium-term storage of data. • Solid-state drive - a device similar to hard disk, but containing no moving parts and stores data in a digital format. • RAID array controller - a device to manage several internal or external hard disks and optionally some peripherals in order to achieve performance or reliability improvement in what is called a RAID array.
  • 12. Sound card Enables the computer to output sound to audio devices, as well as accept input from a microphone . Most modern computers have sound cards built-in to the motherboard, though it is common for a user to install a separate sound card as an upgrade. Most sound cards, either built-in or added, have surround sound capabilities.
  • 13. 2. What is meant by computer's architecture? In computer science and computer engineering , computer architecture or digital computer organization is the conceptual design and fundamental operational structure of a computer system. It is a blueprint and functional description of requirements and design implementations for the various parts of a computer, focusing largely on the way by which the central processing unit (CPU) performs internally and accesses addresses in memory . It may also be defined as the science and art of selecting and interconnecting hardware components to create computers that meet functional, performance and cost goals.
  • 14. Computer architecture comprises at least three main subcategories: Instruction set architecture , or ISA, is the abstract image of a computing system that is seen by a machine language (or assembly language ) programmer, including the instruction set , word size , memory address modes , processor registers , and address and data formats. • Microarchitecture , also known as Computer organization is a lower level, more concrete and detailed, description of the system that involves how the constituent parts of the system are interconnected and how they interoperate in order to implement the ISA. The size of a computer's cache for instance, is an organizational issue that generally has nothing to do with the ISA.
  • 15. System Design which includes all of the other hardware components within a computing system such as: 1. System interconnects such as computer buses and switches 2. Memory controllers and hierarchies 3. CPU off-load mechanisms such as direct memory access (DMA) 4. Issues like multiprocessing . Once both ISA and microarchitecture have been specified, the actual device needs to be designed into hardware. This design process is called implementation . Implementation is usually not considered architectural definition, but rather hardware design engineering .
  • 16. Implementation can be further broken down into three (not fully distinct) pieces: • Logic Implementation — design of blocks defined in the micro architecture at (primarily) the register-transfer and gate levels. • Circuit Implementation — transistor-level design of basic elements (gates, multiplexers, latches etc) as well as of some larger blocks ( ALUs , caches etc) that may be implemented at this level, or even (partly) at the physical level, for performance reasons. • Physical Implementation — physical circuits are drawn out, the different circuit components are placed in a chip floorplan or on a board and the wires connecting them are routed.
  • 17. 3 . Discuss the ff: terms: Motherboard, slot, bus, network, signal, local area network, wide area network, network server, workstation, host.
  • 18. Motherboard The motherboard serves to connect all of the parts of a computer together. The CPU , memory , hard drives , optical drives , video card , sound card and other ports and expansion cards all connect to the motherboard directly or via cables. The motherboard can be thought of as the "back bone" of the computer.
  • 19. Local Area Network (LAN) A local area network (LAN) supplies networking capability to a group of computers in close proximity to each other such as in an office building, a school, or a home. A LAN is useful for sharing resources like files, printers, games or other applications. A LAN in turn often connects to other LANs, and to the Internet or other WAN . Most local area networks are built with relatively inexpensive hardware such as Ethernet cables, network adapters, and hubs. Wireless LAN and other more advanced LAN hardware options also exist. Specialized operating system software may be used to configure a local area network. For example, most flavors of Microsoft Windows provide a software package called Internet Connection Sharing (ICS) that supports controlled access to LAN resources.
  • 20. The term LAN party refers to a multiplayer gaming event where participants bring their own computers and build a temporary LAN. Also Known As: local area network Examples: The most common type of local area network is an Ethernet LAN. The smallest home LAN can have exactly two computers; a large LAN can accommodate many thousands of computers. Many LANs are divided into logical groups called subnets. An Internet Protocol (IP) "Class A" LAN can in theory accommodate more than 16 million devices organized into subnets.
  • 21. Network Server A network server is a computer designed to process requests and deliver data to other (client) computers over a local network or the Internet. Examples include Web servers, proxy servers, and FTP servers. Not only should you be familiar with using servers on the Internet, an increasing number of people have learned to set up network servers for business and personal uses.
  • 22. Wide Area Network (WAN) A WAN spans a large geographic area, such as a state, province or country. WANs often connect multiple smaller networks, such as local area networks (LANs) or metro area networks (MANs). The world's most popular WAN is the Internet. Some segments of the Internet, like VPN -based extranets , are also WANs in themselves. Finally, many WANs are corporate or research networks that utilize leased lines . WANs generally utilize different and much more expensive networking equipment than do LANs. Key technologies often found in WANs include SONET , Frame Relay, and ATM .
  • 23. Computer Workstation A computer workstation is an ergonomically designed area of an office which accommodates a desktop computer and all of its peripherals. Ergonomic design means that the user shouldn't have to assume uncomfortable positions in order to perform his or her duties. A good computer workstation provides a comfortable and adjustable task chair , a properly positioned monitor, a keyboard shelf, a mousepad with wrist rest and peripherals (printers, speakers, disk drives, etc.) which are easily accessible.
  • 24. HOST Hosts devices that connect directly to a network segment. These hosts include computers, both clients and servers, printers, scanners and many other devices. These devices provide the users with connection to the network, with which the users share, create and obtain information.
  • 25. 4. Briefly describe the different network topologies. TOPOLOGY – defines the structure of the network. There are two parts to the topology definition: the physical topology which is the actual layout of the wire (media) and the logical topology which defines how the media is accessed by the hosts. It refers also to how computers are being connected with each other.
  • 26. The types of topologies: 1. BUS topology – uses a single backbone segment (length of cable) that all the hosts connect to directly. The idea is that is just like riding a bus. It has only one driver and many passengers who are riding. 2. RING topology – connects one host to the next and the last host to the first. This creates a physical ring of cable. 3. STAR topology – connects all cables to a central point of concentration. This point is usually a hub or switch. It has a focal point where all the resources are there.
  • 27. 4. EXTENDED STAR topology – uses the star topology to be created. It links individual stars together by linking the hubs/ switches. This will extend the length of the network. 5. HIERARCHICAL topology - is created similar to an extended star but instead of linking the hubs/ switches together, the system is linked to a computer that controls the traffic on the topology. 6. MESH topology – is used when there can be absolutely no break in communications. So as you can see in the graphic, each host has its connections to all other hosts. This also reflects the design of the internet which has multiple paths to any one location.
  • 28. Network Interface Card (NIC) – is a printed circuit board that fits into the expansion slot of a bus on a computer’s motherboard or peripheral device. It is considered to be found in Layer 2 devices because each individual NIC throughout the world carries a unique code, called the Media Access Control (MAC) address. You can build computer networks with many different media types. Each media has advantages and disadvantages. What is an advantage for one media (category 5 cost) might be a disadvantage for another (fiber optic cost). Some of the advantages and disadvantages are: • Cost • Ease of installation • Cable length
  • 29. REPEATER - is an electronic device that receives a signal and retransmits it at a higher level and/or higher power, or onto the other side of an obstruction, so that the signal can cover longer distances. It is used when the type of cable (CAT5 UTP) is long. CAT5 UTP has a maximum length of 100 meters (approximately 333 feet). The purpose of a repeater is regenerate and retimes network signals at the bit level to allow them to travel a longer distance on the media.
  • 30.
  • 31. BRIDGE – refers to a device which has just two parts. It filters the frames and how this is actually accomplished. SWITCH – is to concentrate connectivity, while making data transmission more efficient. A device that is able to combine the connectivity of a hub with the traffic regulation of a bridge on each port. ROUTER – the first device that you will work with that us at the OSI’s network layer, or other known as Layer 3. The purpose of a router is to examine incoming packets, choose the best path for them in a network and then switch them to the proper outgoing port