Computer Hardware & Operation Northern College Diploma Philip Bird.

Slides:



Advertisements
Similar presentations
DAT2343 Basic Logic Gates © Alan T. Pinck / Algonquin College; 2003.
Advertisements

CT455: Computer Organization Logic gate
Computer Science 210 Computer Organization Introduction to Logic Circuits.
ADDER, HALF ADDER & FULL ADDER
How to Convert Decimal Numbers to Binary EXAMPLES.
Lab #1 Follow-Up Unix Binary / Hexadecimal Python.
Representing Data, Pictures, Time, and Size in Computer
Digital Circuits. Analog and Digital Signals Noise margins in Logic Circuits VMVM.
University College Cork IRELAND Number Systems, Data Types, Codes Logic Gates: An Introduction.
I am an L&S CS major. Why do I have to take this class? So you don’t look stupid when you get to your job. To prepare you for hands-on courses like CS.
In a not gate, if the input is on(1) the output is off (0) and vice versa.
Bits and Data Storage. Basic Hardware Units of a Computer.
Boolean math is the cornerstone of digital communications, whether you are talking computers, PLC, or Cisco Routers on the Internet. ©Emil Decker, 2009.
by Prof. Dr. Ali S. Hennache
Binary Real Numbers. Introduction Computers must be able to represent real numbers (numbers w/ fractions) Two different ways:  Fixed-point  Floating-point.
Quantum Computing Presented by: Don Davis PHYS
OCR GCSE Computing © Hodder Education 2013 Slide 1 OCR GCSE Computing Chapter 2: Binary Logic.
Binary Addition CSC 103 September 17, 2007.
Transistors and Logic Circuits. Transistor control voltage in voltage out control high allows current to flow -- switch is closed (on) control low stops.
Digital Electronics and Computer Interfacing Tim Mewes 3. Digital Electronics.
Introduction to Digital Logic and Circuits EE 101, Fall 2015 University of Kentucky.
Number Systems What is the Standard Base we
What is an And Gate? It is a digital circuit that produce logical operations The logical operations are call Boolean logical Boolean operation consist.
 In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs or Small Scale Integrated Circuits. Since these.
CPU Internal memory I/O interface circuit System bus
Computer Hardware & Operation Northern College Diploma Philip Bird.
Number System. Number Systems Important Number systems – Decimal – Binary – Hexadecimal.
Digital Logic Structures: Chapter 3 COMP 2610 Dr. James Money COMP
Bits & Bytes A bit is the smallest amount of memory used to store information. A bit is represented by either a “0” or a “1”. “Bit” is a contraction of.
Logic Design CS 270: Mathematical Foundations of Computer Science Jeremy Johnson.
1 Ethics of Computing MONT 113G, Spring 2012 Session 5 Binary Addition.
1 Ethics of Computing MONT 113G, Spring 2012 Session 1 Digital Circuits, binary Numbers Course webpage:
Binary System Presented by Mr. Wilhelmi Internal Representation of Data Input Input  Data that is put into the computer for processing Data Data  The.
CEC 220 Digital Circuit Design Number Systems & Conversions Friday, January 9 CEC 220 Digital Circuit Design Slide 1 of 16.
1. Computing Systems Lecture 3 Binary Representation & Boolean Logic Binary and Logic 2.
Circuits & Switches. Electricity Formed when an excess of positive or negative particles that are parts of atoms attempts to balance itself=electrical.
Binary 101 Gads Hill School. Aim To strengthen understanding of how computers use the binary number system to store information.
CEC 220 Digital Circuit Design Number Systems & Conversions Wednesday, Aug 26 CEC 220 Digital Circuit Design Slide 1 of 16.
AND Gate Inputs Output Input A (Switch) Input B (Switch) Output Y (Lamp) 0 (Open) 0 (OFF) A B Lamp.
1 Ethics of Computing MONT 113G, Spring 2012 Session 4 Binary Addition.
How does a Computer Add ? Logic Gates within chips: AND Gate A B Output OR Gate A B Output A B A B
Computer Studies Today Chapter 19 1 Chapter 19. Computer Studies Today Chapter 19 2 »Information stored in a computer is in two states: –ON –OFF.
Computing Systems Lecture 3 Binary Representation & Boolean Logic Binary and Logic 1.
 A transistor is the basic building block of electronic components.  The average computer may have millions of them within its circuits.  Essentially,
1 Review of Boolean algebra Not is a horizontal bar above the number –0 = 1 –1 = 0 Or is a plus –0+0 = 0 –0+1 = 1 –1+0 = 1 –1+1 = 1 And is multiplication.
Logic Gates Review. Logic Gates OR gate – 1 if either input is 1 – 0 if they both are 0.
CS 111 – Aug. 27 Section 1.1 –Binary data and operations –Logic gates –Flip-flop –A binary shorthand: hexadecimal Commitment for next day: –Please read.
COMPUTER ORGANISATION.. LAB. تنظيم الحاسبات.. عملي
Computer Architecture & Operations I
GCSE OCR Computing A451 Binary logic Computing hardware 6.
Creating logic gates with Minecraft
Chapter 3 - Binary Numbering System
CSCI-100 Introduction to Computing
Computer Fundamentals
Chapter 2 – Computer hardware
Binary & Hexidecimal Numbers
Digital Signals Digital Signals have two basic states:
Basic Digital Logic Basic Gates
Saturday, 10 November 2018 Binary
Computer Science 210 Computer Organization
Computers & Programming Languages
Digital Concepts for PLCs
Logic Gates.
Logic Gates.
Data Binary Conversion.
Logic Gates.
Binary Logic.
Adder, Subtructer, Encoder, Decoder, Multiplexer, Demultiplexer
WJEC GCSE Computer Science
Microprocessor I 7/18/2019.
Presentation transcript:

Computer Hardware & Operation Northern College Diploma Philip Bird

Computer Hardware & Operation Philip Bird Bits and Bytes Computers work with on’s and off’s – Binary digital values 0 and 1. Binary digits (bits) are usually organised into groups of 8 – a byte. We can use a byte to represent a whole number (integer), a fraction (real) and a character. We can also represent negative numbers.

Computer Hardware & Operation Philip Bird Converting to Binary Base 4 Base 3 Base 2 Base 1 Base Decimal Binary

Computer Hardware & Operation Philip Bird Converting from Binary = = 22

Computer Hardware & Operation Philip Bird Binary Addition = = =219

Computer Hardware & Operation Philip Bird Storing Characters =65 ‘A’ =97 ‘a’ =43 ‘+’

Computer Hardware & Operation Philip Bird Storing Negative Numbers = = = =-128

Computer Hardware & Operation Philip Bird Storing Fractions 1/21/41/81/161/ =13/ =23/32

Computer Hardware & Operation Philip Bird Logic Gates Used to process the binary digits. Originally made as valves, then transistors then integrated into circuits on a chip. History of smaller, faster, denser, cheaper. Each gate governed by a rule.

Computer Hardware & Operation Philip Bird NOT Gate NOT Rule: The output is the opposite of the input. InOut

Computer Hardware & Operation Philip Bird AND Gate AND Rule: The output is 1 if all the inputs are 1. In1In2Out

Computer Hardware & Operation Philip Bird OR Gate OR Rule: The output is 1 if any of the inputs are 1. In1In2Out

Computer Hardware & Operation Philip Bird XOR Gate XOR Rule: The output is 1 if either of the inputs are 1 but not both. In1In2Out