LOGIC GATES “ Logic, like whiskey, loses its beneficial effect when taken in too large quantities “

Slides:



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

Logic Gates.
Logic Gates.
Programmable Logic Controllers.
Logic Gates.
Logic Gates Some Most All Learning Objective
Universal Gates Sum of Products Products of Sum
A Programmable Logic Device Lecture 4.3. A Programmable Logic Device Multiple-input Gates A 2-Input, 1-Output PLD.
Chapter 4 Logic Gates and Boolean Algebra. Introduction Logic gates are the actual physical implementations of the logical operators. These gates form.
In a not gate, if the input is on(1) the output is off (0) and vice versa.
In this module you will learn: What the various logic gates do. How to represent logic gates on a circuit diagram. The truth tables for the logic gates.
Assessment booklet Complete the long exam type question in your assessment booklet - Read the question carefully and highlight key phrases What is the.
Logical Circuit Design Week 5: Combinational Logic Circuits Mentor Hamiti, MSc Office ,
Module 3.  Binary logic consists of :  logic variables  designated by alphabet letters, e.g. A, B, C… x, y, z, etc.  have ONLY 2 possible values:
LOGIC GATES Logic generally has only 2 states, ON or OFF, represented by 1 or 0. Logic gates react to inputs in certain ways. Symbol for AND gate INPUT.
NOCTI Review Lesson 4 Objectives:
TODAY YOU ARE LEARNING to explain why data is represented in computer systems in binary form 2. to understand and produce simple logic diagrams.
Introduction Each logical element or condition must always have a logic value of either "0" or "1", we also need to have ways to combine different logical.
Daily Sprint 1)A water tank is filled with 2000 gallons of water. Each day, 4% of the water evaporates. No water is added to the tank. To the nearest gallon,
Logic Gates It’s Only Logical. Logic Gates Are the switches that computers and similar devices use. They hold their state until something changes. Are.
Logic Gates Shashidhara H S Dept. of ISE MSRIT. Basic Logic Design and Boolean Algebra GATES = basic digital building blocks which correspond to and perform.
Week 6: Gates and Circuits: PART I READING: Chapter 4.
Chapter 33 Basic Logic Gates. 2 Objectives –After completing this chapter, the student should be able to: Identify and explain the function of the basic.
Sneha.  Gates Gates  Characteristics of gates Characteristics of gates  Basic Gates Basic Gates  AND Gate AND Gate  OR gate OR gate  NOT gate NOT.
Gates and Logic Dr John Cowell phones off (please)
4. Computer Maths and Logic 4.2 Boolean Logic Logic Circuits.
Logic Gates. The Inverter The inverter (NOT circuit) performs the operation called inversion or complementation. Standard logic symbols: 1 1 input output.
COMPUTER ARCHITECTURE TRUTH TABLES AND LOGIC GATES.
Logic Gates. AND gate Produces an output only if both inputs are on Input AInput BOutput (Q) Q=
Logic Gates. A logic gate is an elementary building block of a digital circuit. Most logic gates have two inputs and one output. At any given moment,
Department of Electrical and Computer Engineering University of Minnesota Presenter: Chi-Yun Cheng Digital Logic with Molecular Reactions.
CMOS Logic Gates. NMOS transistor acts as a switch 2 When gate voltage is 0 V No channel is formed current does not flow easily “open switch” When gate.
AND Gate Inputs Output Input A (Switch) Input B (Switch) Output Y (Lamp) 0 (Open) 0 (OFF) A B Lamp.
Dept. of Electrical and Computer Eng., NCTU 1 Lab 2. NAND and XOR Presenter: Chun-Hsien Ko Contributors: Chung-Ting Jiang and Lin-Kai Chiu.
MECH 1500 Chapter 4. MECH 1500 The Binary Concept 4.1.
NAND, NOR, and EXOR (more primitive logical gates) CS Computer Architecture David Mayer.
Digital logic representation In digital logic system,events are described as either 0 or 1 Two logic states 1= logic High 0 = logic Low.
Logic Gates and Boolean Algebra Introduction to Logic II.
Boolean Algebra. LO:  Understand why Boolean algebra is used  Understand basic Boolean algebra notation  Understand why Boolean algebra is used  Understand.
4–1. BSCS 5 th Semester Introduction Logic diagram: a graphical representation of a circuit –Each type of gate is represented by a specific graphical.
Logic Gates Digital Logic Design. What is a logic gate? A switch with an output that will only turn on when inputs are in particular positions.
Basic Gates and ICs 74LS00 Quad 2-Input NAND gate 74LS02 Quad 2-Input NOR gate 74LS04 Quad 2-Input NOT gate 74LS08 Quad 2-Input AND gate 74LS32 Quad 2-Input.
Logic Gates Learning Objectives Learn that there is a one-to-one relationship between logic gates and Boolean expressions Learn how logic gates are combined.
Logic gates.
Unit 1 Logical operators.
Eng. Mai Z. Alyazji October, 2016
Logic Gates and Boolean Algebra
ECE 331 – Digital System Design
Logic Gates.
Logic Gates Benchmark Companies Inc PO Box Aurora CO
Exclusive OR Gate.
KS4 Electricity – Electronic systems
KS4 Electricity – Electronic systems
Digital Signals Digital Signals have two basic states:
Basic Digital Logic Basic Gates
Agenda – 2/12/18 Questions? Readings: CSI 4, P
Schematics 201 Lecture Topic: Electrical Symbols
Logic Gates.
Logic Gates.
Boolean Logic Boolean Logic is considered to be the basic of digital electronics. We know that a computer’s most basic operation is based on digital electronics.
KS4 Electricity – Electronic systems
GCSE Computer Science – Logic Gates & Boolean Expressions
Today You are Learning simple logic diagrams using the operations AND, OR and NOT truth tables combining Boolean operators using AND, OR and NOT.
Logic Gates.
Binary Logic.
Chapter 4 Gates and Circuits.
Introduction to Logic diagrams and truth tables
Introduction to Logic diagrams and truth tables
What are Logic Gates?.
Presentation transcript:

LOGIC GATES “ Logic, like whiskey, loses its beneficial effect when taken in too large quantities “

LOGIC GATES  They are the true fundamentals of a computer  They control the way in which electricity can move around the computer, by using switches  You have to know the following types of gates  NOT  OR  XOR  NOR  AND  NAND

REPRESENTATIONS In order to represent a gate there are a couple of ways to describe them Symbol format Text ShorthandReal life A + B = Y It’s really important that you remember all of the different symbols and shorthand, as the exam paper will use either

NOT GATE Input (A) Output (B) A This is the simplest of all gates and will only have one input. Its function is just to reverse the input

AND GATE  Things get a little more challenging now  Firstly there will always be 2 or more inputs for the remaining gates  The purpose of an AND gate is to give an output only if all the inputs are on Input AInput BOutput Q A. B = Q

NAND GATE  NAND gate can be though of as just an AND gate followed by a NOT gate A.B = Q Input AInput BOutput Q

OR GATE  An OR gate will produce an output if one or more of the two inputs are on. Input AInput BOutput Q A + B = Q

NOR GATE  This is the opposite of an OR gate and it means that there will only be an output if the inputs aren’t on Input AInput BOutput Q A + B = Q

XOR GATE  This gate will only have an output if A or B are on, it wont have an output if both A and B are on Input AInput BOutput Q A + B = Q