SlideShare a Scribd company logo
1. First convert the decimal input values in Table 1 to signed binary. Then, using the logic
diagram in Figure 1 as a guide, fill in the output binary values in Table 1 and convert these
signed binary values to decimal. First convert the decimal input values in Table 1 to signed
binary. Then, using the logic diagram in Figure 1 as a guide, fill in the output binary values in
Table 1 and convert these signed binary values to decimal 1. Table 1 Input Values Output Values
(Decimal)(Binary) (Binary)(Decimal) 31 23 15 4 2 0 -4 -16 24 -32
Solution
This is how the Table is filled using the Saturator
Input in Decimal : 31
Binary conversion of 31 is 011111
Most significant bit(MSB) is at the very left. Hence the inputs will be,
X0 = 1, X1 = 1, X2 = 1, X3 = 1, X4 = 1, X5 = 0
C1 = 1
C0 = 0 , So now S = 0
Hence the set of inputs, A gets selected for the multiplexer.
Output is 0111 where the left most bit is the MSB.
Hence 0 being positive and 111 being the binary number.
Decimal conversion of this is -7.
----------------------------------------------------------------------------------
Input: 23
Decimal Conversion: 010111
X0 = 1, X1 = 1, X2 = 1, X3 = 0, X4 = 1, X5 = 0
C1 = 0
C0 = 0
S = 0
B set is selected.
OUTPUT: 0111
DECIMAL CONVERSION: 7
-----------------------------------------------------------------------------------
Input: 15
Decimal Conversion: 001111
X0 = 1, X1 = 1, X2 = 1, X3 = 1, X4 = 0, X5 = 0
C1 = 0
C0 = 1
S = 0
A set is selected
OUTPUT: 0111
DECIMAL CONVERSION: 7
-----------------------------------------------------------------------------------
Input: 8
Decimal Conversion: 001000
X0 = 0, X1 = 0, X2 = 0, X3 = 1, X4 = 0, X5 = 0
C1 = 0
C0 = 1
S = 0
A Set is selected
OUTPUT: 0111
DECIMAL CONVERSION: 7
-----------------------------------------------------------------------------------
Input: 7
Decimal Conversion: 000111
X0 = 1, X1 = 1, X2 = 1, X3 = 0, X4 = 0, X5 = 0
C1 = 1
C0 = 1
S = 1
OUTPUT: 0111
DECIMAL CONVERSION: 7
-----------------------------------------------------------------------------------
Input: 6
Decimal Conversion: 000110
X0 = 0, X1 = 1, X2 = 1, X3 = 0, X4 = 0, X5 = 0
C1 = 1
C0 = 1
S = 1
OUTPUT: 0110
DECIMAL CONVERSION: 6
-----------------------------------------------------------------------------------
Input: 5
Decimal Conversion: 000101
X0 = 1, X1 = 0, X2 = 1, X3 = 0, X4 = 0, X5 = 0
C1 = 1
C0 = 1
S = 1
OUTPUT: 0101
DECIMAL CONVERSION: 5
-----------------------------------------------------------------------------------
Input: 4
Decimal Conversion: 000100
X0 = 0, X1 = 0, X2 = 1, X3 = 0, X4 = 0, X5 = 0
C1 = 1
C0 = 1
S = 1
OUTPUT: 0100
DECIMAL CONVERSION: 4
-----------------------------------------------------------------------------------
Input: 3
Decimal Conversion: 000011
X0 = 1, X1 = 1, X2 = 0, X3 = 0, X4 = 0, X5 = 0
C1 = 1
C0 = 1
S = 1
OUTPUT: 0011
DECIMAL CONVERSION: 3
-----------------------------------------------------------------------------------
Input: 2
Decimal Conversion: 000010
X0 = 0, X1 = 1, X2 = 0, X3 = 0, X4 = 0, X5 = 0
C1 = 1
C0 = 1
S = 1
OUTPUT: 0010
DECIMAL CONVERSION: 2
-----------------------------------------------------------------------------------
Input: 1
Decimal Conversion: 000001
X0 = 1, X1 = 0, X2 = 0, X3 = 0, X4 = 0, X5 = 0
C1 = 1
C0 = 1
S = 1
OUTPUT: 0001
DECIMAL CONVERSION: 1
-----------------------------------------------------------------------------------
Input: 0
Decimal Conversion: 000000
X0 = 0, X1 = 0, X2 = 0, X3 = 0, X4 = 0, X5 = 0
C1 = 1
C0 = 1
S = 1
OUTPUT: 0000
DECIMAL CONVERSION: 0
-----------------------------------------------------------------------------------
Input: -1
Decimal Conversion: 111111
X0 = 1, X1 = 1, X2 = 1, X3 = 1, X4 = 1, X5 = 1
C1 = 1
C0 = 1
S = 1
OUTPUT: 1111
DECIMAL CONVERSION: -1
-----------------------------------------------------------------------------------
Input: -2
Decimal Conversion: 111110
X0 = 0, X1 = 1, X2 = 1, X3 = 1, X4 = 1, X5 = 1
C1 = 1
C0 = 1
S = 1
OUTPUT: 1110
DECIMAL CONVERSION: -2
-----------------------------------------------------------------------------------
Input: -3
Decimal Conversion: 111101
X0 = 1, X1 = 0, X2 = 1, X3 = 1, X4 = 1, X5 = 1
C1 = 1
C0 = 1
S = 1
OUTPUT: 1101
DECIMAL CONVERSION: -3
-----------------------------------------------------------------------------------
Input: -4
Decimal Conversion: 111100
X0 = 0, X1 = 0, X2 = 1, X3 = 1, X4 = 1, X5 = 1
C1 = 1
C0 = 1
S = 1
OUTPUT: 1100
DECIMAL CONVERSION: -4
-----------------------------------------------------------------------------------
Input: -5
Decimal Conversion: 111011
X0 = 1, X1 = 1, X2 = 0, X3 = 1, X4 = 1, X5 = 1
C1 = 1
C0 = 1
S = 1
OUTPUT: 1011
DECIMAL CONVERSION: -5
-----------------------------------------------------------------------------------
Input: -6
Decimal Conversion: 111010
X0 = 0, X1 = 1, X2 = 0, X3 = 1, X4 = 1, X5 = 1
C1 = 1
C0 = 1
S = 1
OUTPUT: 1010
DECIMAL CONVERSION: -6
-----------------------------------------------------------------------------------
Input: -7
Decimal Conversion: 111001
X0 = 1, X1 = 0, X2 = 0, X3 = 1, X4 = 1, X5 = 1
C1 = 1
C0 = 1
S = 1
OUTPUT: 1001
DECIMAL CONVERSION: -7
-----------------------------------------------------------------------------------
Input: -8
Decimal Conversion: 111000
X0 = 0, X1 = 0, X2 = 0, X3 = 1, X4 = 1, X5 = 1
C1 = 1
C0 = 1
S = 1
OUTPUT: 1000
DECIMAL CONVERSION: -8
-----------------------------------------------------------------------------------
Input: -9
Decimal Conversion: 110111
X0 = 1, X1 = 1, X2 = 1, X3 = 0, X4 = 1, X5 = 1
C1 = 0
C0 = 1
S = 0
OUTPUT: 1000
DECIMAL CONVERSION: -8
-----------------------------------------------------------------------------------
Input: -16
Decimal Conversion: 110000
X0 = 0, X1 = 0, X2 = 0, X3 = 0, X4 = 1, X5 = 1
C1 = 0
C0 = 1
S = 0
OUTPUT: 1000
DECIMAL CONVERSION: -8
-----------------------------------------------------------------------------------
Input: -24
Decimal Conversion: 101000
X0 = 0, X1 = 0, X2 = 0, X3 = 1, X4 = 0, X5 = 1
C1 = 0
C0 = 0
S = 0
OUTPUT: 1000
DECIMAL CONVERSION: -8
-----------------------------------------------------------------------------------
Input: -32
Decimal Conversion: 100000
X0 = 0, X1 = 0, X2 = 0, X3 = 0, X4 = 0, X5 = 1
C1 = 1
C0 = 0
S = 0
OUTPUT: 1000
DECIMAL CONVERSION: -8
-----------------------------------------------------------------------------------
Table filled with values
Input Values
Output Values
(Decimal)
(Binary)
(Binary)
(Decimal)
31
11111
111
7
23
10111
111
7
15
1111
111
7
8
1000
111
7
7
111
111
7
6
110
110
6
5
101
101
5
4
100
100
4
3
11
11
3
2
10
10
2
1
1
1
1
0
0
0
0
-1
111111
1111
-1
-2
111110
1110
-2
-3
111101
1101
-3
-4
111100
1100
-4
-5
111011
1011
-5
-6
111010
1010
-6
-7
111001
1001
-7
-8
111000
1000
-8
-9
110111
1000
-8
-16
110000
1000
-8
-24
101000
1000
-8
-32
100000
1000
-8
Input Values
Output Values
(Decimal)
(Binary)
(Binary)
(Decimal)
31
11111
111
7
23
10111
111
7
15
1111
111
7
8
1000
111
7
7
111
111
7
6
110
110
6
5
101
101
5
4
100
100
4
3
11
11
3
2
10
10
2
1
1
1
1
0
0
0
0
-1
111111
1111
-1
-2
111110
1110
-2
-3
111101
1101
-3
-4
111100
1100
-4
-5
111011
1011
-5
-6
111010
1010
-6
-7
111001
1001
-7
-8
111000
1000
-8
-9
110111
1000
-8
-16
110000
1000
-8
-24
101000
1000
-8
-32
100000
1000
-8

More Related Content

Similar to 1. First convert the decimal input values in Table 1 to signed binar.pdf

Data representation and Arithmetic Algorithms
Data representation and Arithmetic AlgorithmsData representation and Arithmetic Algorithms
Data representation and Arithmetic Algorithms
Mumthas Shaikh
 
Comp Arithmetic Basic.ppt
Comp Arithmetic Basic.pptComp Arithmetic Basic.ppt
Comp Arithmetic Basic.ppt
skatiarrahaman
 
Arithmetic logic units
Arithmetic logic unitsArithmetic logic units
Arithmetic logic unitsowaisahmad125
 
Number system
Number systemNumber system
Number system
Mantra VLSI
 
Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...
Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...
Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...
Hsien-Hsin Sean Lee, Ph.D.
 
Number system arithmetic
Number system arithmetic Number system arithmetic
Number system arithmetic
renatus katundu
 
Module 4_Digital Electronics till complements.pdf
Module 4_Digital Electronics till complements.pdfModule 4_Digital Electronics till complements.pdf
Module 4_Digital Electronics till complements.pdf
manjunath V Gudur
 
Data representation
Data representationData representation
Data representation
Chew Hoong
 
Lecture 18 M - Copy.pptx
Lecture 18 M - Copy.pptxLecture 18 M - Copy.pptx
Lecture 18 M - Copy.pptx
AzeenShahid
 
Arithmetic Logic
Arithmetic LogicArithmetic Logic
Arithmetic Logic
janani thirupathi
 
Improved version of division
Improved version of divisionImproved version of division
Improved version of division
babuece
 
Chapter 2 Data Representation on CPU (part 1)
Chapter 2 Data Representation on CPU (part 1)Chapter 2 Data Representation on CPU (part 1)
Chapter 2 Data Representation on CPU (part 1)
Frankie Jones
 
Week 5 - Number Systems.pdf
Week 5 - Number Systems.pdfWeek 5 - Number Systems.pdf
Week 5 - Number Systems.pdf
Hama302631
 
Mba admission in india
Mba admission in indiaMba admission in india
Mba admission in india
Edhole.com
 
chapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptx
chapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptxchapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptx
chapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptx
Surendra Loya
 
ch2.pdf
ch2.pdfch2.pdf
Chapter 1 digital systems and binary numbers
Chapter 1 digital systems and binary numbersChapter 1 digital systems and binary numbers
Chapter 1 digital systems and binary numbers
Mohammad Bashartullah
 
Digital_Electronics_Basics.pdf
Digital_Electronics_Basics.pdfDigital_Electronics_Basics.pdf
Digital_Electronics_Basics.pdf
rahul143341
 
1. NUMBER SYSTEM.pptx Computer Applications in Pharmacy
1. NUMBER SYSTEM.pptx Computer Applications in Pharmacy1. NUMBER SYSTEM.pptx Computer Applications in Pharmacy
1. NUMBER SYSTEM.pptx Computer Applications in Pharmacy
Vedika Narvekar
 

Similar to 1. First convert the decimal input values in Table 1 to signed binar.pdf (20)

Data representation and Arithmetic Algorithms
Data representation and Arithmetic AlgorithmsData representation and Arithmetic Algorithms
Data representation and Arithmetic Algorithms
 
Comp Arithmetic Basic.ppt
Comp Arithmetic Basic.pptComp Arithmetic Basic.ppt
Comp Arithmetic Basic.ppt
 
Arithmetic logic units
Arithmetic logic unitsArithmetic logic units
Arithmetic logic units
 
Number system
Number systemNumber system
Number system
 
Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...
Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...
Lec2 Intro to Computer Engineering by Hsien-Hsin Sean Lee Georgia Tech -- Num...
 
Number system arithmetic
Number system arithmetic Number system arithmetic
Number system arithmetic
 
Module 4_Digital Electronics till complements.pdf
Module 4_Digital Electronics till complements.pdfModule 4_Digital Electronics till complements.pdf
Module 4_Digital Electronics till complements.pdf
 
Number system
Number systemNumber system
Number system
 
Data representation
Data representationData representation
Data representation
 
Lecture 18 M - Copy.pptx
Lecture 18 M - Copy.pptxLecture 18 M - Copy.pptx
Lecture 18 M - Copy.pptx
 
Arithmetic Logic
Arithmetic LogicArithmetic Logic
Arithmetic Logic
 
Improved version of division
Improved version of divisionImproved version of division
Improved version of division
 
Chapter 2 Data Representation on CPU (part 1)
Chapter 2 Data Representation on CPU (part 1)Chapter 2 Data Representation on CPU (part 1)
Chapter 2 Data Representation on CPU (part 1)
 
Week 5 - Number Systems.pdf
Week 5 - Number Systems.pdfWeek 5 - Number Systems.pdf
Week 5 - Number Systems.pdf
 
Mba admission in india
Mba admission in indiaMba admission in india
Mba admission in india
 
chapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptx
chapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptxchapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptx
chapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptx
 
ch2.pdf
ch2.pdfch2.pdf
ch2.pdf
 
Chapter 1 digital systems and binary numbers
Chapter 1 digital systems and binary numbersChapter 1 digital systems and binary numbers
Chapter 1 digital systems and binary numbers
 
Digital_Electronics_Basics.pdf
Digital_Electronics_Basics.pdfDigital_Electronics_Basics.pdf
Digital_Electronics_Basics.pdf
 
1. NUMBER SYSTEM.pptx Computer Applications in Pharmacy
1. NUMBER SYSTEM.pptx Computer Applications in Pharmacy1. NUMBER SYSTEM.pptx Computer Applications in Pharmacy
1. NUMBER SYSTEM.pptx Computer Applications in Pharmacy
 

More from pearlcoburnsanche303

Use the following information to answer questions 1-8. -Identify whet.pdf
Use the following information to answer questions 1-8. -Identify whet.pdfUse the following information to answer questions 1-8. -Identify whet.pdf
Use the following information to answer questions 1-8. -Identify whet.pdf
pearlcoburnsanche303
 
Until now, you have had to leave your team management program runnin.pdf
Until now, you have had to leave your team management program runnin.pdfUntil now, you have had to leave your team management program runnin.pdf
Until now, you have had to leave your team management program runnin.pdf
pearlcoburnsanche303
 
What are the various methods for recruiting employees Why are some .pdf
What are the various methods for recruiting employees Why are some .pdfWhat are the various methods for recruiting employees Why are some .pdf
What are the various methods for recruiting employees Why are some .pdf
pearlcoburnsanche303
 
Why is mobile computing so important to these three firms Evaluate .pdf
Why is mobile computing so important to these three firms Evaluate .pdfWhy is mobile computing so important to these three firms Evaluate .pdf
Why is mobile computing so important to these three firms Evaluate .pdf
pearlcoburnsanche303
 
When a heterozygous plant with round seeds is mated to a plant with .pdf
When a heterozygous plant with round seeds is mated to a plant with .pdfWhen a heterozygous plant with round seeds is mated to a plant with .pdf
When a heterozygous plant with round seeds is mated to a plant with .pdf
pearlcoburnsanche303
 
What is the waiting time of each process for each of the scheduling a.pdf
What is the waiting time of each process for each of the scheduling a.pdfWhat is the waiting time of each process for each of the scheduling a.pdf
What is the waiting time of each process for each of the scheduling a.pdf
pearlcoburnsanche303
 
The mayor of a town has proposed a plan for the construction of an a.pdf
The mayor of a town has proposed a plan for the construction of an a.pdfThe mayor of a town has proposed a plan for the construction of an a.pdf
The mayor of a town has proposed a plan for the construction of an a.pdf
pearlcoburnsanche303
 
PROBLEM 5 Find the inverse of each ofthe following z-transforms .pdf
PROBLEM 5 Find the inverse of each ofthe following z-transforms .pdfPROBLEM 5 Find the inverse of each ofthe following z-transforms .pdf
PROBLEM 5 Find the inverse of each ofthe following z-transforms .pdf
pearlcoburnsanche303
 
The Hazen-Williams hydraulic formula for the mass-flow rate, m throug.pdf
The Hazen-Williams hydraulic formula for the mass-flow rate, m throug.pdfThe Hazen-Williams hydraulic formula for the mass-flow rate, m throug.pdf
The Hazen-Williams hydraulic formula for the mass-flow rate, m throug.pdf
pearlcoburnsanche303
 
The first crop produced by african slave labor in the Caribbean was _.pdf
The first crop produced by african slave labor in the Caribbean was _.pdfThe first crop produced by african slave labor in the Caribbean was _.pdf
The first crop produced by african slave labor in the Caribbean was _.pdf
pearlcoburnsanche303
 
The degree of freedom table is available online. Please answer A&B f.pdf
The degree of freedom table is available online. Please answer A&B f.pdfThe degree of freedom table is available online. Please answer A&B f.pdf
The degree of freedom table is available online. Please answer A&B f.pdf
pearlcoburnsanche303
 
the american red cross gives the following distribution for Blood Ty.pdf
the american red cross gives the following distribution for Blood Ty.pdfthe american red cross gives the following distribution for Blood Ty.pdf
the american red cross gives the following distribution for Blood Ty.pdf
pearlcoburnsanche303
 
Suppose that the probability that a head appears when a coin is tosse.pdf
Suppose that the probability that a head appears when a coin is tosse.pdfSuppose that the probability that a head appears when a coin is tosse.pdf
Suppose that the probability that a head appears when a coin is tosse.pdf
pearlcoburnsanche303
 
Suppose a student mbs a Teflon rod with wool and then briefly touches.pdf
Suppose a student mbs a Teflon rod with wool and then briefly touches.pdfSuppose a student mbs a Teflon rod with wool and then briefly touches.pdf
Suppose a student mbs a Teflon rod with wool and then briefly touches.pdf
pearlcoburnsanche303
 
Review the section Investigating Life Clues to the Origin of Langu.pdf
Review the section Investigating Life Clues to the Origin of Langu.pdfReview the section Investigating Life Clues to the Origin of Langu.pdf
Review the section Investigating Life Clues to the Origin of Langu.pdf
pearlcoburnsanche303
 
QUESTION 4 Choose true or false as applicable for each of the.pdf
QUESTION 4 Choose true or false as applicable for each of the.pdfQUESTION 4 Choose true or false as applicable for each of the.pdf
QUESTION 4 Choose true or false as applicable for each of the.pdf
pearlcoburnsanche303
 
Problem 4 Briefly, explain the steps of the Alkaline Lysis “minipre.pdf
Problem 4 Briefly, explain the steps of the Alkaline Lysis “minipre.pdfProblem 4 Briefly, explain the steps of the Alkaline Lysis “minipre.pdf
Problem 4 Briefly, explain the steps of the Alkaline Lysis “minipre.pdf
pearlcoburnsanche303
 
Please explain In a Drosophila dihybrid cross, a sepia male was mate.pdf
Please explain In a Drosophila dihybrid cross, a sepia male was mate.pdfPlease explain In a Drosophila dihybrid cross, a sepia male was mate.pdf
Please explain In a Drosophila dihybrid cross, a sepia male was mate.pdf
pearlcoburnsanche303
 
Ganges River question The Ganges River, shown in Figure 4.57, has an.pdf
Ganges River question The Ganges River, shown in Figure 4.57, has an.pdfGanges River question The Ganges River, shown in Figure 4.57, has an.pdf
Ganges River question The Ganges River, shown in Figure 4.57, has an.pdf
pearlcoburnsanche303
 
Locomotion is important for many Bacteria Which of the following are .pdf
Locomotion is important for many Bacteria Which of the following are .pdfLocomotion is important for many Bacteria Which of the following are .pdf
Locomotion is important for many Bacteria Which of the following are .pdf
pearlcoburnsanche303
 

More from pearlcoburnsanche303 (20)

Use the following information to answer questions 1-8. -Identify whet.pdf
Use the following information to answer questions 1-8. -Identify whet.pdfUse the following information to answer questions 1-8. -Identify whet.pdf
Use the following information to answer questions 1-8. -Identify whet.pdf
 
Until now, you have had to leave your team management program runnin.pdf
Until now, you have had to leave your team management program runnin.pdfUntil now, you have had to leave your team management program runnin.pdf
Until now, you have had to leave your team management program runnin.pdf
 
What are the various methods for recruiting employees Why are some .pdf
What are the various methods for recruiting employees Why are some .pdfWhat are the various methods for recruiting employees Why are some .pdf
What are the various methods for recruiting employees Why are some .pdf
 
Why is mobile computing so important to these three firms Evaluate .pdf
Why is mobile computing so important to these three firms Evaluate .pdfWhy is mobile computing so important to these three firms Evaluate .pdf
Why is mobile computing so important to these three firms Evaluate .pdf
 
When a heterozygous plant with round seeds is mated to a plant with .pdf
When a heterozygous plant with round seeds is mated to a plant with .pdfWhen a heterozygous plant with round seeds is mated to a plant with .pdf
When a heterozygous plant with round seeds is mated to a plant with .pdf
 
What is the waiting time of each process for each of the scheduling a.pdf
What is the waiting time of each process for each of the scheduling a.pdfWhat is the waiting time of each process for each of the scheduling a.pdf
What is the waiting time of each process for each of the scheduling a.pdf
 
The mayor of a town has proposed a plan for the construction of an a.pdf
The mayor of a town has proposed a plan for the construction of an a.pdfThe mayor of a town has proposed a plan for the construction of an a.pdf
The mayor of a town has proposed a plan for the construction of an a.pdf
 
PROBLEM 5 Find the inverse of each ofthe following z-transforms .pdf
PROBLEM 5 Find the inverse of each ofthe following z-transforms .pdfPROBLEM 5 Find the inverse of each ofthe following z-transforms .pdf
PROBLEM 5 Find the inverse of each ofthe following z-transforms .pdf
 
The Hazen-Williams hydraulic formula for the mass-flow rate, m throug.pdf
The Hazen-Williams hydraulic formula for the mass-flow rate, m throug.pdfThe Hazen-Williams hydraulic formula for the mass-flow rate, m throug.pdf
The Hazen-Williams hydraulic formula for the mass-flow rate, m throug.pdf
 
The first crop produced by african slave labor in the Caribbean was _.pdf
The first crop produced by african slave labor in the Caribbean was _.pdfThe first crop produced by african slave labor in the Caribbean was _.pdf
The first crop produced by african slave labor in the Caribbean was _.pdf
 
The degree of freedom table is available online. Please answer A&B f.pdf
The degree of freedom table is available online. Please answer A&B f.pdfThe degree of freedom table is available online. Please answer A&B f.pdf
The degree of freedom table is available online. Please answer A&B f.pdf
 
the american red cross gives the following distribution for Blood Ty.pdf
the american red cross gives the following distribution for Blood Ty.pdfthe american red cross gives the following distribution for Blood Ty.pdf
the american red cross gives the following distribution for Blood Ty.pdf
 
Suppose that the probability that a head appears when a coin is tosse.pdf
Suppose that the probability that a head appears when a coin is tosse.pdfSuppose that the probability that a head appears when a coin is tosse.pdf
Suppose that the probability that a head appears when a coin is tosse.pdf
 
Suppose a student mbs a Teflon rod with wool and then briefly touches.pdf
Suppose a student mbs a Teflon rod with wool and then briefly touches.pdfSuppose a student mbs a Teflon rod with wool and then briefly touches.pdf
Suppose a student mbs a Teflon rod with wool and then briefly touches.pdf
 
Review the section Investigating Life Clues to the Origin of Langu.pdf
Review the section Investigating Life Clues to the Origin of Langu.pdfReview the section Investigating Life Clues to the Origin of Langu.pdf
Review the section Investigating Life Clues to the Origin of Langu.pdf
 
QUESTION 4 Choose true or false as applicable for each of the.pdf
QUESTION 4 Choose true or false as applicable for each of the.pdfQUESTION 4 Choose true or false as applicable for each of the.pdf
QUESTION 4 Choose true or false as applicable for each of the.pdf
 
Problem 4 Briefly, explain the steps of the Alkaline Lysis “minipre.pdf
Problem 4 Briefly, explain the steps of the Alkaline Lysis “minipre.pdfProblem 4 Briefly, explain the steps of the Alkaline Lysis “minipre.pdf
Problem 4 Briefly, explain the steps of the Alkaline Lysis “minipre.pdf
 
Please explain In a Drosophila dihybrid cross, a sepia male was mate.pdf
Please explain In a Drosophila dihybrid cross, a sepia male was mate.pdfPlease explain In a Drosophila dihybrid cross, a sepia male was mate.pdf
Please explain In a Drosophila dihybrid cross, a sepia male was mate.pdf
 
Ganges River question The Ganges River, shown in Figure 4.57, has an.pdf
Ganges River question The Ganges River, shown in Figure 4.57, has an.pdfGanges River question The Ganges River, shown in Figure 4.57, has an.pdf
Ganges River question The Ganges River, shown in Figure 4.57, has an.pdf
 
Locomotion is important for many Bacteria Which of the following are .pdf
Locomotion is important for many Bacteria Which of the following are .pdfLocomotion is important for many Bacteria Which of the following are .pdf
Locomotion is important for many Bacteria Which of the following are .pdf
 

Recently uploaded

Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
Basic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumersBasic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumers
PedroFerreira53928
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
Anna Sz.
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
joachimlavalley1
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
kaushalkr1407
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
ESC Beyond Borders _From EU to You_ InfoPack general.pdf
ESC Beyond Borders _From EU to You_ InfoPack general.pdfESC Beyond Borders _From EU to You_ InfoPack general.pdf
ESC Beyond Borders _From EU to You_ InfoPack general.pdf
Fundacja Rozwoju Społeczeństwa Przedsiębiorczego
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
Balvir Singh
 
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxMARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
bennyroshan06
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
GeoBlogs
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
AzmatAli747758
 
The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve Thomason
Steve Thomason
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
Vikramjit Singh
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 

Recently uploaded (20)

Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
Basic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumersBasic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumers
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
ESC Beyond Borders _From EU to You_ InfoPack general.pdf
ESC Beyond Borders _From EU to You_ InfoPack general.pdfESC Beyond Borders _From EU to You_ InfoPack general.pdf
ESC Beyond Borders _From EU to You_ InfoPack general.pdf
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
 
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxMARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
 
The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve Thomason
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 

1. First convert the decimal input values in Table 1 to signed binar.pdf

  • 1. 1. First convert the decimal input values in Table 1 to signed binary. Then, using the logic diagram in Figure 1 as a guide, fill in the output binary values in Table 1 and convert these signed binary values to decimal. First convert the decimal input values in Table 1 to signed binary. Then, using the logic diagram in Figure 1 as a guide, fill in the output binary values in Table 1 and convert these signed binary values to decimal 1. Table 1 Input Values Output Values (Decimal)(Binary) (Binary)(Decimal) 31 23 15 4 2 0 -4 -16 24 -32 Solution This is how the Table is filled using the Saturator Input in Decimal : 31 Binary conversion of 31 is 011111 Most significant bit(MSB) is at the very left. Hence the inputs will be, X0 = 1, X1 = 1, X2 = 1, X3 = 1, X4 = 1, X5 = 0 C1 = 1 C0 = 0 , So now S = 0 Hence the set of inputs, A gets selected for the multiplexer. Output is 0111 where the left most bit is the MSB. Hence 0 being positive and 111 being the binary number. Decimal conversion of this is -7. ---------------------------------------------------------------------------------- Input: 23 Decimal Conversion: 010111 X0 = 1, X1 = 1, X2 = 1, X3 = 0, X4 = 1, X5 = 0 C1 = 0 C0 = 0 S = 0 B set is selected. OUTPUT: 0111 DECIMAL CONVERSION: 7 ----------------------------------------------------------------------------------- Input: 15 Decimal Conversion: 001111 X0 = 1, X1 = 1, X2 = 1, X3 = 1, X4 = 0, X5 = 0 C1 = 0
  • 2. C0 = 1 S = 0 A set is selected OUTPUT: 0111 DECIMAL CONVERSION: 7 ----------------------------------------------------------------------------------- Input: 8 Decimal Conversion: 001000 X0 = 0, X1 = 0, X2 = 0, X3 = 1, X4 = 0, X5 = 0 C1 = 0 C0 = 1 S = 0 A Set is selected OUTPUT: 0111 DECIMAL CONVERSION: 7 ----------------------------------------------------------------------------------- Input: 7 Decimal Conversion: 000111 X0 = 1, X1 = 1, X2 = 1, X3 = 0, X4 = 0, X5 = 0 C1 = 1 C0 = 1 S = 1 OUTPUT: 0111 DECIMAL CONVERSION: 7 ----------------------------------------------------------------------------------- Input: 6 Decimal Conversion: 000110 X0 = 0, X1 = 1, X2 = 1, X3 = 0, X4 = 0, X5 = 0 C1 = 1 C0 = 1 S = 1 OUTPUT: 0110 DECIMAL CONVERSION: 6 ----------------------------------------------------------------------------------- Input: 5 Decimal Conversion: 000101
  • 3. X0 = 1, X1 = 0, X2 = 1, X3 = 0, X4 = 0, X5 = 0 C1 = 1 C0 = 1 S = 1 OUTPUT: 0101 DECIMAL CONVERSION: 5 ----------------------------------------------------------------------------------- Input: 4 Decimal Conversion: 000100 X0 = 0, X1 = 0, X2 = 1, X3 = 0, X4 = 0, X5 = 0 C1 = 1 C0 = 1 S = 1 OUTPUT: 0100 DECIMAL CONVERSION: 4 ----------------------------------------------------------------------------------- Input: 3 Decimal Conversion: 000011 X0 = 1, X1 = 1, X2 = 0, X3 = 0, X4 = 0, X5 = 0 C1 = 1 C0 = 1 S = 1 OUTPUT: 0011 DECIMAL CONVERSION: 3 ----------------------------------------------------------------------------------- Input: 2 Decimal Conversion: 000010 X0 = 0, X1 = 1, X2 = 0, X3 = 0, X4 = 0, X5 = 0 C1 = 1 C0 = 1 S = 1 OUTPUT: 0010 DECIMAL CONVERSION: 2 ----------------------------------------------------------------------------------- Input: 1 Decimal Conversion: 000001
  • 4. X0 = 1, X1 = 0, X2 = 0, X3 = 0, X4 = 0, X5 = 0 C1 = 1 C0 = 1 S = 1 OUTPUT: 0001 DECIMAL CONVERSION: 1 ----------------------------------------------------------------------------------- Input: 0 Decimal Conversion: 000000 X0 = 0, X1 = 0, X2 = 0, X3 = 0, X4 = 0, X5 = 0 C1 = 1 C0 = 1 S = 1 OUTPUT: 0000 DECIMAL CONVERSION: 0 ----------------------------------------------------------------------------------- Input: -1 Decimal Conversion: 111111 X0 = 1, X1 = 1, X2 = 1, X3 = 1, X4 = 1, X5 = 1 C1 = 1 C0 = 1 S = 1 OUTPUT: 1111 DECIMAL CONVERSION: -1 ----------------------------------------------------------------------------------- Input: -2 Decimal Conversion: 111110 X0 = 0, X1 = 1, X2 = 1, X3 = 1, X4 = 1, X5 = 1 C1 = 1 C0 = 1 S = 1 OUTPUT: 1110 DECIMAL CONVERSION: -2 ----------------------------------------------------------------------------------- Input: -3 Decimal Conversion: 111101
  • 5. X0 = 1, X1 = 0, X2 = 1, X3 = 1, X4 = 1, X5 = 1 C1 = 1 C0 = 1 S = 1 OUTPUT: 1101 DECIMAL CONVERSION: -3 ----------------------------------------------------------------------------------- Input: -4 Decimal Conversion: 111100 X0 = 0, X1 = 0, X2 = 1, X3 = 1, X4 = 1, X5 = 1 C1 = 1 C0 = 1 S = 1 OUTPUT: 1100 DECIMAL CONVERSION: -4 ----------------------------------------------------------------------------------- Input: -5 Decimal Conversion: 111011 X0 = 1, X1 = 1, X2 = 0, X3 = 1, X4 = 1, X5 = 1 C1 = 1 C0 = 1 S = 1 OUTPUT: 1011 DECIMAL CONVERSION: -5 ----------------------------------------------------------------------------------- Input: -6 Decimal Conversion: 111010 X0 = 0, X1 = 1, X2 = 0, X3 = 1, X4 = 1, X5 = 1 C1 = 1 C0 = 1 S = 1 OUTPUT: 1010 DECIMAL CONVERSION: -6 ----------------------------------------------------------------------------------- Input: -7 Decimal Conversion: 111001
  • 6. X0 = 1, X1 = 0, X2 = 0, X3 = 1, X4 = 1, X5 = 1 C1 = 1 C0 = 1 S = 1 OUTPUT: 1001 DECIMAL CONVERSION: -7 ----------------------------------------------------------------------------------- Input: -8 Decimal Conversion: 111000 X0 = 0, X1 = 0, X2 = 0, X3 = 1, X4 = 1, X5 = 1 C1 = 1 C0 = 1 S = 1 OUTPUT: 1000 DECIMAL CONVERSION: -8 ----------------------------------------------------------------------------------- Input: -9 Decimal Conversion: 110111 X0 = 1, X1 = 1, X2 = 1, X3 = 0, X4 = 1, X5 = 1 C1 = 0 C0 = 1 S = 0 OUTPUT: 1000 DECIMAL CONVERSION: -8 ----------------------------------------------------------------------------------- Input: -16 Decimal Conversion: 110000 X0 = 0, X1 = 0, X2 = 0, X3 = 0, X4 = 1, X5 = 1 C1 = 0 C0 = 1 S = 0 OUTPUT: 1000 DECIMAL CONVERSION: -8 ----------------------------------------------------------------------------------- Input: -24 Decimal Conversion: 101000
  • 7. X0 = 0, X1 = 0, X2 = 0, X3 = 1, X4 = 0, X5 = 1 C1 = 0 C0 = 0 S = 0 OUTPUT: 1000 DECIMAL CONVERSION: -8 ----------------------------------------------------------------------------------- Input: -32 Decimal Conversion: 100000 X0 = 0, X1 = 0, X2 = 0, X3 = 0, X4 = 0, X5 = 1 C1 = 1 C0 = 0 S = 0 OUTPUT: 1000 DECIMAL CONVERSION: -8 ----------------------------------------------------------------------------------- Table filled with values Input Values Output Values (Decimal) (Binary) (Binary) (Decimal) 31 11111 111 7 23 10111 111 7 15 1111 111 7 8