Computer Fundamentals

Slides:



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

ADDER, HALF ADDER & FULL ADDER
Lab #1 Follow-Up Unix Binary / Hexadecimal Python.
Representing Data, Pictures, Time, and Size in Computer
Data Representation (in computer system) Computer Fundamental CIM2460 Bavy LI.
In a not gate, if the input is on(1) the output is off (0) and vice versa.
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.
OCR GCSE Computing © Hodder Education 2013 Slide 1 OCR GCSE Computing Chapter 2: Binary Logic.
Binary Addition CSC 103 September 17, 2007.
Digital Electronics and Computer Interfacing Tim Mewes 3. Digital Electronics.
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.
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
Computer Systems Nat 4/5 Computing Science Data Representation Lesson 2: Floating Point Representation.
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.
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.
1. Computing Systems Lecture 3 Binary Representation & Boolean Logic Binary and Logic 2.
Computer Systems Nat 4/5 Computing Science Lesson 1: Binary.
Computer Fundamentals Northern College Diploma Philip Bird.
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.
AND Gate Inputs Output Input A (Switch) Input B (Switch) Output Y (Lamp) 0 (Open) 0 (OFF) A B Lamp.
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.
Electrical Engineering Engineering the Future Digital Circuits Fundamentals Hands-on Full-Adder Simulation (afternoon)
Computer Hardware & Operation Northern College Diploma Philip Bird.
 A transistor is the basic building block of electronic components.  The average computer may have millions of them within its circuits.  Essentially,
Logic Gates Review. Logic Gates OR gate – 1 if either input is 1 – 0 if they both are 0.
COMPUTER ORGANISATION.. LAB. تنظيم الحاسبات.. عملي
© 2015 Project Lead The Way, Inc.Introduction to Computer Science What is Digital Information?
Nat 4/5 Computing Science Lesson 1: Binary
Computer Science 210 Computer Organization
Binary & Decimal numbers
Computer Architecture & Operations I
Invitation to Computer Science, C++ Version, Fourth Edition
GCSE OCR Computing A451 Binary logic Computing hardware 6.
Creating logic gates with Minecraft
Chapter 3 - Binary Numbering System
Computer Science 210 Computer Organization
Integer Real Numbers Character Boolean Memory Address CPU Data Types
Binary & Hexidecimal Numbers
Digital Signals Digital Signals have two basic states:
Basic Digital Logic Basic Gates
Fundamentals & Ethics of Information Systems IS 201
Saturday, 10 November 2018 Binary
Computer Science 210 Computer Organization
Digital Concepts for PLCs
Logic Gates.
Week 7: Gates and Circuits: PART II
Computer Science 210 Computer Organization
Logic Gates.
Data Binary Conversion.
AWIM Series Lawndale High School Experiment 6 Dec, 2017
Logic Gates.
How to Represent Numbers on a Computer
Binary Logic.
Adder, Subtructer, Encoder, Decoder, Multiplexer, Demultiplexer
Boolean Algebra and its Relation to Digital Circuits
Logic Gates AIM: To know the different types of logic gate
WJEC GCSE Computer Science
Computer Systems Nat 4/5 Computing Science Data Representation
Microprocessor I 7/18/2019.
Presentation transcript:

Computer Fundamentals Northern College Diploma 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.

Converting to Binary Base4 Base3 Base2 Base1 Base0 10000 1000 100 10 1 Decimal 16 8 4 2 Binary

Converting from Binary 16 8 4 2 1 = 13 = 22

Binary Addition 128 64 32 16 8 4 2 1 =102 =117 1 1 1 1 1 1 1 1 1 =219

Storing Characters 128 64 32 16 8 4 2 1 =65 ‘A’ =97 ‘a’ =43 ‘+’

Storing Negative Numbers -128 64 32 16 8 4 2 1 =38 =-90 =127 =-128

Storing Fractions 1/2 1/4 1/8 1/16 1/32 1 =13/16 =23/32

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.

NOT Gate In Out 1 NOT 1 1 Rule: 1 NOT 1 1 Rule: The output is the opposite of the input.

AND Gate In1 In2 Out 1 1 1 AND Rule: 1 1 1 AND Rule: The output is 1 if all the inputs are 1.

OR Gate In1 In2 Out 1 1 1 OR Rule: 1 1 1 OR Rule: The output is 1 if any of the inputs are 1.

XOR Gate In1 In2 Out 1 1 1 XOR Rule: 1 1 1 XOR Rule: The output is 1 if either of the inputs are 1 but not both.

Summary Why do computers use binary? What can be stored in binary? What is a logic gate used for?