CELIA SCHAHCZENSKI. FE Exam Review Computers Oct. 18, 2018

Size: px
Start display at page:

Download "CELIA SCHAHCZENSKI. FE Exam Review Computers Oct. 18, 2018"

Transcription

1 CELIA SCHAHCZENSKI FE Exam Review Computers Oct. 18, 2018

2 TOPICS Data Storage (2 problems) Data transmission (1 problem) Pseudo code (2 problems) Spreadsheets (3 problems) Logic Circuits (2 problems) Flowcharts (2 problems) Number systems (5 problems)

3 DATA STORAGE Copyright Kaplan AEC Education, 2008

4 DATA STORAGE 1. How many bytes does a 64 KB microprocessor memory contain? (a) 64,000 (b) 65,536 (c) 64,512 (d) 66560

5 SOLUTION 1 KB is equivalent to 1,024 ( = 2 10 ) bytes. Therefore, 64 KB = 64 * 1024 = 65,536. Answer is (b).

6 QUANTITIES Kilo thousand (1, 024), 2 10 Mega million (1, 048,576), 2 20 Giga billion, 2 30 Tera trillion, 2 40 Peta quadrillion, 2 50 Exa quintillion, 2 60 Zetta sextillion, 2 70 Yotta septillion, 2 80

7 DATA STORAGE 2. On modern machines a byte is equivalent to (a) (b) (c) (d) 2 bits 8 bits a word 4 bits

8 SOLUTION A byte is defined as a group of 8 bits. Answer: (b)

9 DATA TRANSMISSION Copyright Kaplan AEC Education, 2008

10 DATA TRANSMISSION 3. When transmitting odd-parity coded symbols, the number of bits that are zeros in each symbol is (a) even (b) odd (c) unknown (d) none of the above

11 SOLUTION Odd parity coding requires odd number of 1 bits (including the parity bit). The number of zeros is not determined for parity purposes and thus could be either odd or even. So it is unknown. Answer: (c)

12 PSEUDO CODE Copyright Kaplan AEC Education, 2008

13 PSEUDO CODE 4. Consider the pseudo code below. power = 3 count = 0 do while (power < 2000) power = power * power count = count + 1 end do What are the values of count and power at the end of execution?

14 SOLUTION power is <2000 Iteration 1: power = 3 * 3 = 9; count = = 1 power is <2000 Iteration 2: power = 9 * 9 = 81; count = = 2 power is <2000 Iteration 3: power = 81 * 81 = 6561; count = = 3 Power is >2000 Execution stops. Therefore, count = 3 and power = 6561

15 PROGRAMMING LOOPS 5. If the following Fortran DO loop is executed, the output printed would be DO 1 K = 3, 7, 2 J = K 1 Continue Print J (a) 6 (b) 9 (c) 3 (d) 7

16 SOLUTION In executing the loop, for the first iteration, K = 3 and so J = 3. In second iteration K = 5 and so J = 5. Next, K = 7, the loop will be executed, and so J = 7. On the next iteration K = 9, so the loop will not be executed; the program will go to the Print statement and print the last value of J, which is 7. Answer: (d)

17 SPREADSHEETS Copyright Kaplan AEC Education, 2008

18 SPREADSHEETS 6. A spreadsheet has cell A1 set to 2 and A2 to 3. In cell A3 a formula $A1 + A$2 is placed. This formula is then copied into cells A4, A5 and A6 in order. The number in cell A6 is: (a) 9 (c) 21 (b) 8 (d) 5

19 SOLUTION Recall that a $ sign in front of column or row variable in a formula makes the reference an absolute reference as the formula is copied to other cells. Cells in the spreadsheet will be:

20 A (formulas) A (numbers) $A1 + A$2 5 Answer: (a) 4 $A2 + A$2 6 5 $A3 + A$2 8 6 $A4 + A$2 9

21 SPREADSHEETS 7. A spreadsheet is populated with numbers and formulas as shown. Formula from B5 is copied into cell D5. What is the value in cell D5? A B C D E Sum(A1:A4) Average(A1:$B4) Sum(A1:B4)??

22 SOLUTION The formula in cell D5 will be AVERAGE ($B1:C4) leading to average of values in eight cells, B1 through C4, which is ( ) / 8 = 5.375

23 SPREADSHEETS 8. In the following spreadsheet, formula from cell B5 is copied into cell E5. What is the value in cell E5? A B C D E Sum(A1:A4) Average(A1:$B4) Sum(A1:B4)??

24 SOLUTION The formula in cell E5 will be AVERAGE ($B1:D4) leading to average of values in twelve cells, B1 through D4, which is ( ) / 12 =

25 LOGIC CIRCUITS Copyright Kaplan AEC Education, 2008

26 LOGIC CIRCUITS 9. Develop and simplify the Boolean expressions For the given Logic circuit and simplify.

27 SOLUTION The term logic in digital computing applies to AND, OR, NAND, NOR or XOR logic functions. Logic gates produce a high or low at the output which is dependent on the conditions of the inputs. Copyright Kaplan AEC Education, 2008

28 SOLUTION AND NOT OR XOR Copyright Kaplan AEC Education, 2008

29 SOLUTION 1. Inputs A and B feed AND gate 1, so its output is A.B 2. Inputs and A feed OR gate 2, so its output is + A 3. Output gates 1 and 2 feed OR gate 3, so its output is A.B + ( +A)

30 LOGIC CIRCUITS 10. Find the Boolean function of the logic circuit and simplify.

31 SOLUTION 1. Inputs A and C feed OR gate 1, so its output is A+C 2. The result of step 1, along with B, feeds into AND gate 2, so its output is (A+C).B 3. The result of step 2, along with B, feeds into OR gate 3, so its output is (A+C).B + B 4. This simplifies to B, but that isn t one of the answers. 5. Find one of the answers which is equivalent. 6. Factoring out the B gives ((A+C) + 1). B which is equivalent to (A+C + 1). B which can also be written B.(A+C + 1)

32 FLOWCHARTS Copyright Kaplan AEC Education, 2008

33 FLOWCHARTS 11.In a flowchart a graphical symbol for a process is (a) (b) (c) (d)

34 SOLUTION Diamond - decision or branching Circle connector Rectangle process Parallelogram - input-output (I-O) Answer: (c)

35 SAMPLE FLOWCHART

36 SAMPLE FLOWCHART WITH CONNECTOR

37 SAMPLE FLOWCHART

38 FLOWCHARTS 12.The following symbol used in a flowchart indicates (a) Branching (b) Process (c) Input-Output (d) Start-Stop

39 SOLUTION Ellipse - start or termination of an operation Answer: (d)

40 NUMBER SYSTEMS

41 NUMBER SYSTEMS 13. A decimal number 458 is equivalent to an octal number: (a) (217) 8 (b) (458) 8 (c) (712) 8 (d) (4510) 8

42 SOLUTION Quotient Remainder 458 8= = = Answer: (c)

43 NUMBER SYSTEMS 14. Hexadecimal representation of the binary number is (a) 5B 78 (b) B6 78 (c) B6 0F (d) 5B 0F

44 SOLUTION Group the binary bits into groups of four, starting from the binary point ( ) and moving (left) and padding with trailing (leading) 0's as necessary. Then convert each group of four to a hexadecimal digit = 5 B 7 8 Answer: (a)

45 NUMBER SYSTEMS 15. Binary equivalent of ECE C0E is (a) (b) (c) (d)

46 SOLUTION Replace each hexadecimal digit with its 4-bit equivalent binary number; and retain the position of the hexadecimal point. Remove leading and trailing zeros. E C E C 0 E Answer: (d)

47 NUMBER SYSTEMS 16. Decimal equivalent of the octal number (157) 8 is (a) 157 (b) 111 (c) 227 (d) 96

48 SOLUTION 1 x x x 8 0 = 111 Answer: (b)

49 NUMBER SYSTEMS 17. Hexadecimal representation of an octal number (155) 8 is (a) DA (b) 6D (c) 109 (d) 77 5

50 SOLUTION Represent the octal number in binary form and then group binary bits in groups of 4 starting from the binary point and going left (right) and adding leading (trailing) 0s as necessary. (155) 8 = = = 6 D Answer: (b)

51 GOOD LUCK!

Asst. Prof. Thavatchai Tayjasanant, PhD. Power System Research Lab 12 th Floor, Building 4 Tel: (02)

Asst. Prof. Thavatchai Tayjasanant, PhD. Power System Research Lab 12 th Floor, Building 4 Tel: (02) 2145230 Aircraft Electricity and Electronics Asst. Prof. Thavatchai Tayjasanant, PhD Email: taytaycu@gmail.com aycu@g a co Power System Research Lab 12 th Floor, Building 4 Tel: (02) 218-6527 1 Chapter

More information

Gates and Circuits 1

Gates and Circuits 1 1 Gates and Circuits Chapter Goals Identify the basic gates and describe the behavior of each Describe how gates are implemented using transistors Combine basic gates into circuits Describe the behavior

More information

Logic diagram: a graphical representation of a circuit

Logic diagram: a graphical representation of a circuit LOGIC AND GATES Introduction to Logic (1) Logic diagram: a graphical representation of a circuit Each type of gate is represented by a specific graphical symbol Truth table: defines the function of a gate

More information

Odd-Prime Number Detector The table of minterms is represented. Table 13.1

Odd-Prime Number Detector The table of minterms is represented. Table 13.1 Odd-Prime Number Detector The table of minterms is represented. Table 13.1 Minterm A B C D E 1 0 0 0 0 1 3 0 0 0 1 1 5 0 0 1 0 1 7 0 0 1 1 1 11 0 1 0 1 1 13 0 1 1 0 1 17 1 0 0 0 1 19 1 0 0 1 1 23 1 0 1

More information

Chapter 1: Digital logic

Chapter 1: Digital logic Chapter 1: Digital logic I. Overview In PHYS 252, you learned the essentials of circuit analysis, including the concepts of impedance, amplification, feedback and frequency analysis. Most of the circuits

More information

University of Technology

University of Technology University of Technology Lecturer: Dr. Sinan Majid Course Title: microprocessors 4 th year Lecture 7 & 8 NAND and XOR Implementations Combinational Design Procedure NAND-NAND & NOR-NOR Networks DeMorgan

More information

SE311: Design of Digital Systems Lecture 1: Introduction to Digital Systems

SE311: Design of Digital Systems Lecture 1: Introduction to Digital Systems SE311: Design of Digital Systems Lecture 1: Introduction to Digital Systems Dr. Samir Al-Amer (Term 041) SE311_Lec1 (c) 2004 AL-AMER ١ Design of Digital Systems Grading policy Course Outlines Introduction

More information

Orders of magnitude are written in powers of 10. For example, the order of magnitude of 1500 is 3, since 1500 may be written as

Orders of magnitude are written in powers of 10. For example, the order of magnitude of 1500 is 3, since 1500 may be written as From Wikipedia, the free encyclopedia Orders of magnitude are written in powers of 10. For example, the order of magnitude of 1500 is 3, since 1500 may be written as 1.5 10 3. Differences in order of magnitude

More information

Logic Design I (17.341) Fall Lecture Outline

Logic Design I (17.341) Fall Lecture Outline Logic Design I (17.341) Fall 2011 Lecture Outline Class # 07 October 31, 2011 / November 07, 2011 Dohn Bowden 1 Today s Lecture Administrative Main Logic Topic Homework 2 Course Admin 3 Administrative

More information

Digital Applications (CETT 1415) Credit: 4 semester credit hours (3 hours lecture, 4 hours lab) Prerequisite: CETT 1403 & CETT 1405

Digital Applications (CETT 1415) Credit: 4 semester credit hours (3 hours lecture, 4 hours lab) Prerequisite: CETT 1403 & CETT 1405 Digital Applications () Credit: 4 semester credit hours (3 hours lecture, 4 hours lab) Prerequisite: CETT 1403 & CETT 1405 Course Description This course covers digital techniques and numbering systems,

More information

Digital Applications (CETT 1415) Credit: 4 semester credit hours (3 hours lecture, 4 hours lab) Prerequisite: CETT 1403 & CETT 1405

Digital Applications (CETT 1415) Credit: 4 semester credit hours (3 hours lecture, 4 hours lab) Prerequisite: CETT 1403 & CETT 1405 Digital Applications (CETT 1415) Credit: 4 semester credit hours (3 hours lecture, 4 hours lab) Prerequisite: CETT 1403 & CETT 1405 Course Description This course covers digital techniques and numbering

More information

N1-1 Whole Numbers. Pre-requisites: None Estimated Time: 2 hours. Summary Learn Solve Revise Answers. Summary

N1-1 Whole Numbers. Pre-requisites: None Estimated Time: 2 hours. Summary Learn Solve Revise Answers. Summary N1-1 Whole Numbers whole numbers to trillions the terms: whole number, counting number, multiple, factor, even, odd, composite, prime, >, < Pre-requisites: None Estimated Time: 2 hours Summary Learn Solve

More information

CS302 Digital Logic Design Solved Objective Midterm Papers For Preparation of Midterm Exam

CS302 Digital Logic Design Solved Objective Midterm Papers For Preparation of Midterm Exam CS302 Digital Logic Design Solved Objective Midterm Papers For Preparation of Midterm Exam MIDTERM EXAMINATION 2011 (October-November) Q-21 Draw function table of a half adder circuit? (2) Answer: - Page

More information

Gates and and Circuits

Gates and and Circuits Chapter 4 Gates and Circuits Chapter Goals Identify the basic gates and describe the behavior of each Describe how gates are implemented using transistors Combine basic gates into circuits Describe the

More information

repeated multiplication of a number, for example, 3 5. square roots and cube roots of numbers

repeated multiplication of a number, for example, 3 5. square roots and cube roots of numbers NUMBER 456789012 Numbers form many interesting patterns. You already know about odd and even numbers. Pascal s triangle is a number pattern that looks like a triangle and contains number patterns. Fibonacci

More information

Function Table of an Odd-Parity Generator Circuit

Function Table of an Odd-Parity Generator Circuit Implementation of an Odd-Parity Generator Circuit The first step in implementing any circuit is to represent its operation in terms of a Truth or Function table. The function table for an 8-bit data as

More information

Analog, Digital, and Logic

Analog, Digital, and Logic Analog, Digital, and Logic Analog and Digital A/D and D/A conversion Prof Carruthers (ECE @ BU) EK307 Notes Summer 2018 116 / 264 Analog and Digital Digital and Analog There are 10 kinds of people: those

More information

1.) If a 3 input NOR gate has eight input possibilities, how many of those possibilities result in a HIGH output? (a.) 1 (b.) 2 (c.) 3 (d.) 7 (e.

1.) If a 3 input NOR gate has eight input possibilities, how many of those possibilities result in a HIGH output? (a.) 1 (b.) 2 (c.) 3 (d.) 7 (e. Name: Multiple Choice 1.) If a 3 input NOR gate has eight input possibilities, how many of those possibilities result in a HIGH output? (a.) 1 (b.) 2 (c.) 3 (d.) 7 (e.) 8 2.) The output of an OR gate with

More information

CS302 - Digital Logic Design Glossary By

CS302 - Digital Logic Design Glossary By CS302 - Digital Logic Design Glossary By ABEL : Advanced Boolean Expression Language; a software compiler language for SPLD programming; a type of hardware description language (HDL) Adder : A digital

More information

Dr. Nicola Nicolici COE/EE2DI4 Midterm Test #1 Oct 18, 2006

Dr. Nicola Nicolici COE/EE2DI4 Midterm Test #1 Oct 18, 2006 COE/EE2DI4 Midterm Test #1 Fall 2006 Page 1 Dr. Nicola Nicolici COE/EE2DI4 Midterm Test #1 Oct 18, 2006 Instructions: This examination paper includes 10 pages and 20 multiple-choice questions starting

More information

2. REFERENCE. QD/HW/SPF/M/ Nov. 2002

2. REFERENCE. QD/HW/SPF/M/ Nov. 2002 . REFERENCE This section contains tables, equations and general reference information frequently required by data acquisition engineers and in particular those in the aerospace industry. QD/HW/SPF/M/0001

More information

Introduction to Digital Logic Missouri S&T University CPE 2210 Exam 1 Logistics

Introduction to Digital Logic Missouri S&T University CPE 2210 Exam 1 Logistics Introduction to Digital Logic Missouri S&T University CPE 2210 Exam 1 Logistics Egemen K. Çetinkaya Egemen K. Çetinkaya Department of Electrical & Computer Engineering Missouri University of Science and

More information

CS1800 Discrete Structures Fall 2016 Profs. Aslam, Gold, Ossowski, Pavlu, & Sprague 7 November, CS1800 Discrete Structures Midterm Version C

CS1800 Discrete Structures Fall 2016 Profs. Aslam, Gold, Ossowski, Pavlu, & Sprague 7 November, CS1800 Discrete Structures Midterm Version C CS1800 Discrete Structures Fall 2016 Profs. Aslam, Gold, Ossowski, Pavlu, & Sprague 7 November, 2016 CS1800 Discrete Structures Midterm Version C Instructions: 1. The exam is closed book and closed notes.

More information

SEVENTH EDITION and EXPANDED SEVENTH EDITION

SEVENTH EDITION and EXPANDED SEVENTH EDITION SEVENTH EDITION and EXPANDED SEVENTH EDITION Slide 4-1 Chapter 4 Systems of Numeration 4.1 Additive, Multiplicative, and Ciphered Systems of Numeration Systems of Numeration A system of numeration consists

More information

Encoders. Lecture 23 5

Encoders. Lecture 23 5 -A decoder with enable input can function as a demultiplexer a circuit that receives information from a single line and directs it to one of 2 n possible output lines. The selection of a specific output

More information

Digital Logic Circuits

Digital Logic Circuits Digital Logic Circuits Let s look at the essential features of digital logic circuits, which are at the heart of digital computers. Learning Objectives Understand the concepts of analog and digital signals

More information

Digital Logic Design ELCT 201

Digital Logic Design ELCT 201 Faculty of Information Engineering and Technology Dr. Haitham Omran and Dr. Wassim Alexan Digital Logic Design ELCT 201 Winter 2017 Midterm Exam Second Chance Please tick the box of your major: IET MET

More information

Name: Class: Date: 1. As more electronic systems have been designed using digital technology, devices have become smaller and less powerful.

Name: Class: Date: 1. As more electronic systems have been designed using digital technology, devices have become smaller and less powerful. Name: Class: Date: DE Midterm Review 2 True/False Indicate whether the statement is true or false. 1. As more electronic systems have been designed using digital technology, devices have become smaller

More information

Objective Questions. (a) Light (b) Temperature (c) Sound (d) all of these

Objective Questions. (a) Light (b) Temperature (c) Sound (d) all of these Objective Questions Module 1: Introduction 1. Which of the following is an analog quantity? (a) Light (b) Temperature (c) Sound (d) all of these 2. Which of the following is a digital quantity? (a) Electrical

More information

LIST OF EXPERIMENTS. KCTCET/ /Odd/3rd/ETE/CSE/LM

LIST OF EXPERIMENTS. KCTCET/ /Odd/3rd/ETE/CSE/LM LIST OF EXPERIMENTS. Study of logic gates. 2. Design and implementation of adders and subtractors using logic gates. 3. Design and implementation of code converters using logic gates. 4. Design and implementation

More information

Unit level 4 Credit value 15. Introduction. Learning Outcomes

Unit level 4 Credit value 15. Introduction. Learning Outcomes Unit 20: Unit code Digital Principles T/615/1494 Unit level 4 Credit value 15 Introduction While the broad field of electronics covers many aspects, it is digital electronics which now has the greatest

More information

TABLE 3-2 Truth Table for Code Converter Example

TABLE 3-2 Truth Table for Code Converter Example 997 by Prentice-Hall, Inc. Mano & Kime Upper Saddle River, New Jersey 7458 T-28 TABLE 3-2 Truth Table for Code Converter Example Decimal Digit Input BCD Output Excess-3 A B C D W Y Z 2 3 4 5 6 7 8 9 Truth

More information

INTRODUCTION TO DIGITAL CONCEPT

INTRODUCTION TO DIGITAL CONCEPT COURSE / CODE DIGITAL SYSTEM FUNDAMENTALS (ECE 421) DIGITAL ELECTRONICS FUNDAMENTAL (ECE 422) INTRODUCTION TO DIGITAL CONCEPT Digital and Analog Quantities Digital relates to data in the form of digits,

More information

Combinational Logic Circuits. Combinational Logic

Combinational Logic Circuits. Combinational Logic Combinational Logic Circuits The outputs of Combinational Logic Circuits are only determined by the logical function of their current input state, logic 0 or logic 1, at any given instant in time. The

More information

CHAPTER 3 BASIC & COMBINATIONAL LOGIC CIRCUIT

CHAPTER 3 BASIC & COMBINATIONAL LOGIC CIRCUIT CHAPTER 3 BASIC & COMBINATIONAL LOGIC CIRCUIT CHAPTER CONTENTS 3.1 Introduction to Basic Gates 3.2 Analysing A Combinational Logic Circuit 3.3 Design A Combinational Logic Circuit From Boolean Expression

More information

Combinational Circuits: Multiplexers, Decoders, Programmable Logic Devices

Combinational Circuits: Multiplexers, Decoders, Programmable Logic Devices Combinational Circuits: Multiplexers, Decoders, Programmable Logic Devices Lecture 5 Doru Todinca Textbook This chapter is based on the book [RothKinney]: Charles H. Roth, Larry L. Kinney, Fundamentals

More information

Electronics. Digital Electronics

Electronics. Digital Electronics Electronics Digital Electronics Introduction Unlike a linear, or analogue circuit which contains signals that are constantly changing from one value to another, such as amplitude or frequency, digital

More information

2 Logic Gates THE INVERTER. A logic gate is an electronic circuit which makes logic decisions. It has one output and one or more inputs.

2 Logic Gates THE INVERTER. A logic gate is an electronic circuit which makes logic decisions. It has one output and one or more inputs. 2 Logic Gates A logic gate is an electronic circuit which makes logic decisions. It has one output and one or more inputs. THE INVERTER The inverter (NOT circuit) performs the operation called inversion

More information

Chapter 4: The Building Blocks: Binary Numbers, Boolean Logic, and Gates

Chapter 4: The Building Blocks: Binary Numbers, Boolean Logic, and Gates Chapter 4: The Building Blocks: Binary Numbers, Boolean Logic, and Gates Objectives In this chapter, you will learn about The binary numbering system Boolean logic and gates Building computer circuits

More information

Number system: the system used to count discrete units is called number. Decimal system: the number system that contains 10 distinguished

Number system: the system used to count discrete units is called number. Decimal system: the number system that contains 10 distinguished Number system: the system used to count discrete units is called number system Decimal system: the number system that contains 10 distinguished symbols that is 0-9 or digits is called decimal system. As

More information

Section 4.3. Other Bases. Copyright 2013, 2010, 2007, Pearson, Education, Inc.

Section 4.3. Other Bases. Copyright 2013, 2010, 2007, Pearson, Education, Inc. Section 4.3 Other Bases INB Table of Contents Date Topic Page # May 14, 2014 Section 4.3 Examples 8 May 14, 2014 Section 4.3 Notes 9 2.3-2 What You Will Learn Converting base 10 numerals to numerals in

More information

In this lecture: Lecture 8: ROM & Programmable Logic Devices

In this lecture: Lecture 8: ROM & Programmable Logic Devices In this lecture: Lecture 8: ROM Programmable Logic Devices Dr Pete Sedcole Department of EE Engineering Imperial College London http://caseeicacuk/~nps/ (Floyd, 3 5, 3) (Tocci 2, 24, 25, 27, 28, 3 34)

More information

Summer Solutions Problem Solving Level 4. Level 4. Problem Solving. Help Pages

Summer Solutions Problem Solving Level 4. Level 4. Problem Solving. Help Pages Level Problem Solving 6 General Terms acute angle an angle measuring less than 90 addend a number being added angle formed by two rays that share a common endpoint area the size of a surface; always expressed

More information

DIGITAL ELECTRONICS QUESTION BANK

DIGITAL ELECTRONICS QUESTION BANK DIGITAL ELECTRONICS QUESTION BANK Section A: 1. Which of the following are analog quantities, and which are digital? (a) Number of atoms in a simple of material (b) Altitude of an aircraft (c) Pressure

More information

Data Representation. "There are 10 kinds of people in the world, those who understand binary numbers, and those who don't."

Data Representation. There are 10 kinds of people in the world, those who understand binary numbers, and those who don't. Data Representation "There are 10 kinds of people in the world, those who understand binary numbers, and those who don't." How Computers See the World There are a number of very common needs for a computer,

More information

Lab Report: Digital Logic

Lab Report: Digital Logic Lab Report: Digital Logic Introduction The aim of the Digital Logic Lab was to construct a simple 4-bit Arithmetic Logic Unit (ALU) in order to demonstrate methods of using Boolean Algebra to manipulate

More information

COMPUTER ORGANIZATION & ARCHITECTURE DIGITAL LOGIC CSCD211- DEPARTMENT OF COMPUTER SCIENCE, UNIVERSITY OF GHANA

COMPUTER ORGANIZATION & ARCHITECTURE DIGITAL LOGIC CSCD211- DEPARTMENT OF COMPUTER SCIENCE, UNIVERSITY OF GHANA COMPUTER ORGANIZATION & ARCHITECTURE DIGITAL LOGIC LOGIC Logic is a branch of math that tries to look at problems in terms of being either true or false. It will use a set of statements to derive new true

More information

ANALOGUE AND DIGITAL ELECTRONICS STUDENT S WORKBOOK U3: DIGITAL ELECTRONICS

ANALOGUE AND DIGITAL ELECTRONICS STUDENT S WORKBOOK U3: DIGITAL ELECTRONICS NLOGUE ND DIGITL ELECTRONICS STUDENT S WORKBOOK U3: DIGITL ELECTRONICS Joaquim Crisol Llicència D, Generalitat de Catalunya NILE Norwich, pril of 211 Table of contents Table of contents 3 DIGITL ELECTRONICS....

More information

MAHALAKSHMI ENGINEERING COLLEGE TIRUCHIRAPALLI

MAHALAKSHMI ENGINEERING COLLEGE TIRUCHIRAPALLI MAHALAKSHMI ENGINEERING COLLEGE TIRUCHIRAPALLI 6 DEPARTMENT: ECE QUESTION BANK SUBJECT NAME: DIGITAL SYSTEM DESIGN SEMESTER III SUBJECT CODE: EC UNIT : Design of Combinational Circuits PART -A ( Marks).

More information

ELECTRONIC CIRCUITS. Time: Three Hours Maximum Marks: 100

ELECTRONIC CIRCUITS. Time: Three Hours Maximum Marks: 100 EC 40 MODEL TEST PAPER - 1 ELECTRONIC CIRCUITS Time: Three Hours Maximum Marks: 100 Answer five questions, taking ANY TWO from Group A, any two from Group B and all from Group C. All parts of a question

More information

Chapter 1 Binary Systems

Chapter 1 Binary Systems EEA051 - Digital Logic 數位邏輯 Chapter 1 Binary Systems 吳俊興高雄大學資訊工程學系 September 2005 Chapter 1. Binary Systems 1-1 Digital Systems 1-2 Binary Numbers 1-3 Number Base Conversions 1-4 Octal and Hexadecimal

More information

1. The decimal number 62 is represented in hexadecimal (base 16) and binary (base 2) respectively as

1. The decimal number 62 is represented in hexadecimal (base 16) and binary (base 2) respectively as BioE 1310 - Review 5 - Digital 1/16/2017 Instructions: On the Answer Sheet, enter your 2-digit ID number (with a leading 0 if needed) in the boxes of the ID section. Fill in the corresponding numbered

More information

LOGIC DIAGRAM: HALF ADDER TRUTH TABLE: A B CARRY SUM. 2012/ODD/III/ECE/DE/LM Page No. 1

LOGIC DIAGRAM: HALF ADDER TRUTH TABLE: A B CARRY SUM. 2012/ODD/III/ECE/DE/LM Page No. 1 LOGIC DIAGRAM: HALF ADDER TRUTH TABLE: A B CARRY SUM K-Map for SUM: K-Map for CARRY: SUM = A B + AB CARRY = AB 22/ODD/III/ECE/DE/LM Page No. EXPT NO: DATE : DESIGN OF ADDER AND SUBTRACTOR AIM: To design

More information

Department of Electronics and Communication Engineering

Department of Electronics and Communication Engineering Department of Electronics and Communication Engineering Sub Code/Name: BEC3L2- DIGITAL ELECTRONICS LAB Name Reg No Branch Year & Semester : : : : LIST OF EXPERIMENTS Sl No Experiments Page No Study of

More information

Used Semiconductor Manufacturing Equipment: Looking for Sales in All the Right Places. Study Number MA108-09

Used Semiconductor Manufacturing Equipment: Looking for Sales in All the Right Places. Study Number MA108-09 Study Number MA108-09 August 2009 Copyright Semico Research, 2009. All rights reserved. Reproduction in whole or part is prohibited without permission of Semico. The contents of this report represent

More information

Approximate Hybrid Equivalent Circuits. Again, the impedance looking into the output terminals is infinite so that. conductance is zero.

Approximate Hybrid Equivalent Circuits. Again, the impedance looking into the output terminals is infinite so that. conductance is zero. Again, the impedance looking into the output terminals is infinite so that conductance is zero. Hence, the four h-parameters of an ideal transistor connected in CE transistor are The hybrid equivalent

More information

Lecture 2: Data Representation

Lecture 2: Data Representation Points Addressed in this Lecture Lecture : Data Representation Professor Peter Cheung Department of EEE, Imperial College London What do we mean by data? How can data be represented electronically? What

More information

Tools of Algebra. Chapter 1:

Tools of Algebra. Chapter 1: Chapter 1: Tools of Algebra Using algebraic formulas requires skill with all types of numbers (negatives, fractions and decimals), an understanding of measurements for lengths and angles, familiarity with

More information

GREATER CLARK COUNTY SCHOOLS PACING GUIDE. Grade 4 Mathematics GREATER CLARK COUNTY SCHOOLS

GREATER CLARK COUNTY SCHOOLS PACING GUIDE. Grade 4 Mathematics GREATER CLARK COUNTY SCHOOLS GREATER CLARK COUNTY SCHOOLS PACING GUIDE Grade 4 Mathematics 2014-2015 GREATER CLARK COUNTY SCHOOLS ANNUAL PACING GUIDE Learning Old Format New Format Q1LC1 4.NBT.1, 4.NBT.2, 4.NBT.3, (4.1.1, 4.1.2,

More information

Lab 2: Measurements and the Metric System

Lab 2: Measurements and the Metric System Lab 2: Measurements and the Metric System The word measure means to determine the size, capacity, extent, volume, or quantity of anything, especially as determined by comparison with some standard or unit.

More information

EECS 150 Homework 4 Solutions Fall 2008

EECS 150 Homework 4 Solutions Fall 2008 Problem 1: You have a 100 MHz clock, and need to generate 3 separate clocks at different frequencies: 20 MHz, 1kHz, and 1Hz. How many flip flops do you need to implement each clock if you use: a) a ring

More information

Multiple Category Scope and Sequence: Scope and Sequence Report For Course Standards and Objectives, Content, Skills, Vocabulary

Multiple Category Scope and Sequence: Scope and Sequence Report For Course Standards and Objectives, Content, Skills, Vocabulary Multiple Category Scope and Sequence: Scope and Sequence Report For Course Standards and Objectives, Content, Skills, Vocabulary Wednesday, August 20, 2014, 1:16PM Unit Course Standards and Objectives

More information

GEOMETRY. Workbook Common Core Standards Edition. Published by TOPICAL REVIEW BOOK COMPANY. P. O. Box 328 Onsted, MI

GEOMETRY. Workbook Common Core Standards Edition. Published by TOPICAL REVIEW BOOK COMPANY. P. O. Box 328 Onsted, MI Workbook Common Core Standards Edition Published by TOPICAL REVIEW BOOK COMPANY P. O. Box 328 Onsted, MI 49265-0328 www.topicalrbc.com EXAM PAGE Reference Sheet...i January 2017...1 June 2017...11 August

More information

INTRO TO NANOTECHNOLOGY AND BIOSENSORS 5E Inquiry Lesson Plans - Grades 7-12 Lesson Plan #2: Intro to Nanotechnology & its current uses!

INTRO TO NANOTECHNOLOGY AND BIOSENSORS 5E Inquiry Lesson Plans - Grades 7-12 Lesson Plan #2: Intro to Nanotechnology & its current uses! INTRO TO NANOTECHNOLOGY AND BIOSENSORS 5E Inquiry Lesson Plans - Grades 7-12 Lesson Plan #2: Intro to Nanotechnology & its current uses! ENGAGE: Get out a meter stick. Have students volunteer all the prefixes

More information

About the speed of animated models in MS Excel part #2

About the speed of animated models in MS Excel part #2 About the speed of animated models in MS Excel part #2 by George Lungu - This is the second part of a presentation concerning the calculation speed in Excel workbooks. - The first half contained a speed

More information

CALCULATING SQUARE ROOTS BY HAND By James D. Nickel

CALCULATING SQUARE ROOTS BY HAND By James D. Nickel By James D. Nickel Before the invention of electronic calculators, students followed two algorithms to approximate the square root of any given number. First, we are going to investigate the ancient Babylonian

More information

Learning Log Title: CHAPTER 1: INTRODUCTION AND REPRESENTATION. Date: Lesson: Chapter 1: Introduction and Representation

Learning Log Title: CHAPTER 1: INTRODUCTION AND REPRESENTATION. Date: Lesson: Chapter 1: Introduction and Representation CHAPTER 1: INTRODUCTION AND REPRESENTATION Date: Lesson: Learning Log Title: Toolkit 2013 CPM Educational Program. All rights reserved. 1 Date: Lesson: Learning Log Title: Toolkit 2013 CPM Educational

More information

GATE Online Free Material

GATE Online Free Material Subject : Digital ircuits GATE Online Free Material 1. The output, Y, of the circuit shown below is (a) AB (b) AB (c) AB (d) AB 2. The output, Y, of the circuit shown below is (a) 0 (b) 1 (c) B (d) A 3.

More information

= (2 3 ) = c LAMC Beginners Circle September 29, Oleg Gleizer. Warm-up

= (2 3 ) = c LAMC Beginners Circle September 29, Oleg Gleizer. Warm-up LAMC Beginners Circle September 29, 2013 Oleg Gleizer oleg1140@gmail.com Warm-up Problem 1 Simplify the following expressions as much as possible. a. b. 9 3 3 6 = (2 3 ) 4 2 3 2 4 = c. 23 4 2 3 2 4 = d.

More information

Lecture 2. Digital Basics

Lecture 2. Digital Basics Lecture Digital Basics Peter Cheung Department of Electrical & Electronic Engineering Imperial College London URL: www.ee.ic.ac.uk/pcheung/teaching/de1_ee/ E-mail: p.cheung@imperial.ac.uk Lecture Slide

More information

Winter Quarter Competition

Winter Quarter Competition Winter Quarter Competition LA Math Circle (Advanced) March 13, 2016 Problem 1 Jeff rotates spinners P, Q, and R and adds the resulting numbers. What is the probability that his sum is an odd number? Problem

More information

Digital. Design. R. Ananda Natarajan B C D

Digital. Design. R. Ananda Natarajan B C D Digital E A B C D 0 1 2 3 4 5 6 Design 7 8 9 10 11 12 13 14 15 Y R. Ananda Natarajan Digital Design Digital Design R. ANANDA NATARAJAN Professor Department of Electronics and Instrumentation Engineering

More information

CPET 190 Problem Solving with MATLAB. Lecture 2

CPET 190 Problem Solving with MATLAB. Lecture 2 CPET 190 Problem Solving with MATLAB Lecture 2 Introduction to MATLAB http://www.etcs.ipfw.edu/~lin August 30, 2005 Lecture 2 - By P. Lin 1 Lecture 2: Math Problem Solving with MATLAB Part I 2-1 Constants

More information

NUMBERS & PLACE VALUES

NUMBERS & PLACE VALUES Page 1 of 28 MATH MILESTONE # 1 NUMBERS & PLACE VALUES The word, milestone, means a point at which a significant (important, of consequence) change occurs. A Math Milestone refers to a significant point

More information

NORTH MAHARASHTRA UNIVERSITY, JALGAON

NORTH MAHARASHTRA UNIVERSITY, JALGAON , JALGAON Syllabus for F.Y.B.Sc. Semester I and II ELECTRONICS (w. e. f. June 2012) F.Y. B. Sc. Subject Electronics Syllabus Structure Semester Code Title Number of Lectures ELE-111 Paper I : Analog Electronics

More information

Chapter 3 Describing Logic Circuits Dr. Xu

Chapter 3 Describing Logic Circuits Dr. Xu Chapter 3 Describing Logic Circuits Dr. Xu Chapter 3 Objectives Selected areas covered in this chapter: Operation of truth tables for AND, NAND, OR, and NOR gates, and the NOT (INVERTER) circuit. Boolean

More information

SRV ENGINEERING COLLEGE SEMBODAI RUKMANI VARATHARAJAN ENGINEERING COLLEGE SEMBODAI

SRV ENGINEERING COLLEGE SEMBODAI RUKMANI VARATHARAJAN ENGINEERING COLLEGE SEMBODAI SEMBODAI RUKMANI VARATHARAJAN ENGINEERING COLLEGE SEMBODAI 6489 (Approved By AICTE,Newdelhi Affiliated To ANNA UNIVERSITY::Chennai) CS 62 DIGITAL ELECTRONICS LAB (REGULATION-23) LAB MANUAL DEPARTMENT OF

More information

Chapter 1 An Introduction to Computers and Problem Solving

Chapter 1 An Introduction to Computers and Problem Solving hapter 1 n Introduction to omputers and Problem Solving Section 1.1 n Introduction to omputers 1. Visual Basic is considered to be a () first-generation language. (B) package. () high-level language. ()

More information

Topic Notes: Digital Logic

Topic Notes: Digital Logic Computer Science 220 Assembly Language & Comp. Architecture Siena College Fall 20 Topic Notes: Digital Logic Our goal for the next couple of weeks is to gain a reasonably complete understanding of how

More information

THE UNIVERSITY OF TRINIDAD & TOBAGO

THE UNIVERSITY OF TRINIDAD & TOBAGO THE UNIVERSITY OF TRINIDAD & TOBAGO FINAL ASSESSMENT/EXAMINATIONS APRIL/MAY 2014 Course Code and Title: Digital Electronics Programme: Communications Engineering Technology Diploma Date: 16 th April 2014

More information

IES Digital Mock Test

IES Digital Mock Test . The circuit given below work as IES Digital Mock Test - 4 Logic A B C x y z (a) Binary to Gray code converter (c) Binary to ECESS- converter (b) Gray code to Binary converter (d) ECESS- To Gray code

More information

Course Overview. Course Overview

Course Overview. Course Overview Course Overview Where does this course fit into the Electrical Engineering curriculum? Page 5 Course Overview Where does this course fit into the Computer Engineering curriculum? Page 6 3 Course Content

More information

Module 4: Design and Analysis of Combinational Circuits 1. Module-4. Design and Analysis of Combinational Circuits

Module 4: Design and Analysis of Combinational Circuits 1. Module-4. Design and Analysis of Combinational Circuits 1 Module-4 Design and Analysis of Combinational Circuits 4.1 Motivation: This topic develops the fundamental understanding and design of adder, substractor, code converter multiplexer, demultiplexer etc

More information

Government of Karnataka Department of Technical Education Board of Technical Examinations, Bengaluru

Government of Karnataka Department of Technical Education Board of Technical Examinations, Bengaluru Prerequisites Government of Karnataka Department of Technical Education Board of Technical Examinations, Bengaluru Course Title :Digital Electronics Lab I Course Code : 15EC2P Semester : II Course Group

More information

F3 08AD 1 8-Channel Analog Input

F3 08AD 1 8-Channel Analog Input F38AD 8-Channel Analog Input 42 F38AD Module Specifications The following table provides the specifications for the F38AD Analog Input Module from FACTS Engineering. Review these specifications to make

More information

4th Grade Mathematics Mathematics CC

4th Grade Mathematics Mathematics CC Course Description In Grade 4, instructional time should focus on five critical areas: (1) attaining fluency with multi-digit multiplication, and developing understanding of dividing to find quotients

More information

UC Berkeley CS61C : Machine Structures

UC Berkeley CS61C : Machine Structures CS61C L22 Representations of Combinatorial Logic Circuits (1) inst.eecs.berkeley.edu/~cs61c UC Berkeley CS61C : Machine Structures Lecture 22 Representations of Combinatorial Logic Circuits 27-3-9 TA David

More information

2 Building Blocks. There is often the need to compare two binary values.

2 Building Blocks. There is often the need to compare two binary values. 2 Building Blocks 2.1 Comparators There is often the need to compare two binary values. This is done using a comparator. A comparator determines whether binary values A and B are: 1. A = B 2. A < B 3.

More information

B.C.A 2017 DIGITAL ELECTRONICS BCA104T MODULE SPECIFICATION SHEET. Course Outline

B.C.A 2017 DIGITAL ELECTRONICS BCA104T MODULE SPECIFICATION SHEET. Course Outline Course Outline B.C.A 2017 DIGITAL ELECTRONICS BCA104T MODULE SPECIFICATION SHEET The purpose of the course is to teach principles of digital electronics. This course covers varieties of topics including

More information

GRADE VIII MODEL PAPER 2017 COMPUTER EDUCATION

GRADE VIII MODEL PAPER 2017 COMPUTER EDUCATION CRQs GRADE VIII MODEL PAPER 2017 COMPUTER EDUCATION CRQ/ ERQ Paper Marking Scheme Q1: 4 Marks Enlist FOUR functions of network interface card i. It allows two-way communication. ii. It connects the computer

More information

UC Berkeley CS61C : Machine Structures

UC Berkeley CS61C : Machine Structures inst.eecs.berkeley.edu/~cs61c UC Berkeley CS61C : Machine Structures Lecture 22 Representations of Combinatorial Logic Circuits Lecturer SOE Dan Garcia www.cs.berkeley.edu/~ddgarcia 100 MPG Car contest!

More information

Unit 3. Logic Design

Unit 3. Logic Design EE 2: Digital Logic Circuit Design Dr Radwan E Abdel-Aal, COE Logic and Computer Design Fundamentals Unit 3 Chapter Combinational 3 Combinational Logic Logic Design - Introduction to Analysis & Design

More information

UC Berkeley CS61C : Machine Structures

UC Berkeley CS61C : Machine Structures inst.eecs.berkeley.edu/~cs61c UC Berkeley CS61C : Machine Structures Lecture 25 Representations of Combinational Logic Circuits Senior Lecturer SOE Dan Garcia www.cs.berkeley.edu/~ddgarcia Conway s Life

More information

Homework #01. Electronics Homework 01 MSCI 222C

Homework #01. Electronics Homework 01 MSCI 222C Electronics Homework 0 MSCI 222C Homework #0 READINGS: Electronics Workbook (ew.pdf).: Pages -27 Man of High Fidelity (armstrong.pdf): Chapters -3 General rules for written homework assignments:. Show

More information

QUIZ. What do these bits represent?

QUIZ. What do these bits represent? QUIZ What do these bits represent? 1001 0110 1 QUIZ What do these bits represent? Unsigned integer: 1101 1110 Signed integer (2 s complement): Fraction: IBM 437 character: Latin-1 character: Huffman-compressed

More information

Laboratory Manual CS (P) Digital Systems Lab

Laboratory Manual CS (P) Digital Systems Lab Laboratory Manual CS 09 408 (P) Digital Systems Lab INDEX CYCLE I A. Familiarization of digital ICs and digital IC trainer kit 1 Verification of truth tables B. Study of combinational circuits 2. Verification

More information

Multiple input gates. The AND gate

Multiple input gates. The AND gate Multiple input gates Inverters and buffers exhaust the possibilities for single-input gate circuits. What more can be done with a single logic signal but to buffer it or invert it? To explore more logic

More information

MATH MILESTONE # A1 NUMBERS & PLACE VALUES

MATH MILESTONE # A1 NUMBERS & PLACE VALUES Page 1 of 22 MATH MILESTONE # A1 NUMBERS & PLACE VALUES Researched and written by Vinay Agarwala (Revised 4/9/15) Milestone A1: Instructions The purpose of this document is to learn the Numbering System.

More information

Lesson 22: Writing and Evaluating Expressions Exponents

Lesson 22: Writing and Evaluating Expressions Exponents Student Outcomes Students evaluate and write formulas involving exponents for given values in real-world problems. Lesson Notes Exponents are used in calculations of both area and volume. Other examples

More information

Binary Addition. Boolean Algebra & Logic Gates. Recap from Monday. CSC 103 September 12, Binary numbers ( 1.1.1) How Computers Work

Binary Addition. Boolean Algebra & Logic Gates. Recap from Monday. CSC 103 September 12, Binary numbers ( 1.1.1) How Computers Work Binary Addition How Computers Work High level conceptual questions Boolean Algebra & Logic Gates CSC 103 September 12, 2007 What Are Computers? What do computers do? How do they do it? How do they affect

More information