SlideShare a Scribd company logo
1 of 16
INSTITUT KEMAHIRAN MARA BESUT
JALAN BATU TUMBUH, ALOR LINTANG,
22000 BESUT,
TERENGGANU DARUL IMAN.
INFORMATION SHEET
( KERTAS PENERANGAN )
PROGRAM’S CODE &
NAME/ KOD DAN NAMA
PROGRAM
EE-021-2:2012 INDUSTRIAL ELECTRONICS
LEVEL/ TAHAP L2
COMPETENCY UNIT NO.
AND TITLE/ NO. DAN
TAJUK UNIT
KOMPETENSI
C02 INSTRUMENT AND TEST EQUIPMENT SETUP &
HANDLING
WORK ACTIVITIES NO.
AND STATEMENT/ NO.
DAN PENYATAAN
AKTIVITI KERJA
1. IDENTIFY INSTRUMENT AND TEST EQUIPMENT
SET UP & HANDLING
2. PREPARE FOR INSTRUMENT AND TEST
EQUIPMENT SET UP & HANDLING
3. SET UP INSTRUMENT AND TEST EQUIPMENT
4. PERFORM RECORDING AND TAGGING OF
INSTRUMENT & TEST EQUIPMENT
5. REPORT INSTRUMENT AND TEST EQUIPMENT SET
UP & HANDLING
CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15)
Page/ Muka Surat: 1
Of / Drpd : 16
TITLE/ TAJUK:
NUMBER SYSTEMS IN DIGITAL
PURPOSE/ TUJUAN:
This information sheet purposes to explain details on number systems involved in digital
systems. The explanations related on binary number system, addition and subtraction
operations of binary number system including fractions and non-fractions, 1’s and 2’s
compliments of binary number and arithmetic operations and conversion of base in
numbering systems.
INFORMATION/ PENERANGAN:
The binary number system and digital codes are fundamental to computers and to
digital electronics in each general. In this chapter, the binary number and its
relationship to other number system such as decimal, hexadecimal and octal is
presented.
1. COUNT IN BINARY NUMBER SYSTEM
The binary number is simply another way to represent quantities. The binary
number system is less complicated than the decimal system because it has only
two digits. The two binary digits (bits) are I and 0. In a number system, this is
expressed as a base of 2. As with the decimal number system, each bit (digit)
position of a binary number carries a particular weight that determines the
magnitude of that number.
2. BINARY AND DECIMAL NUMBER CONVERSION
i. Convert From The Decimal Form To Binary Form – Without Fractions.
To convert from decimal to binary, use repeated division-by-2. For example, the
conversion of the decimal number I210 to binary by repeated division by 2.
Converting decimal number 12 to binary begin by dividing 12 by 2. Then divide
each resulting quotient by 2 until there is a 0 whole number quotient. The
reminder generates each division form the binary number. The first reminder to
be produced is the LSB (least significant bit) in the binary number and the last
reminder to be produced is the MSB (most significant bit).
CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15)
Page / Muka Surat : 2
Of / Drpd : 16
ii. Convert From The Decimal Form To Binary Form Involving Fractions.
Decimal fraction can be converted to binary by repeated multiplication-by-2. For
example, the conversion of the decimal number O.312510 to binary by repeated
multiplication by 2. Converting the decimal fraction 0.312510 to binary, begin by
multiplying 0.3125 by 2 and then multiplying each resulting fractional part of the
product by 2 until the fractional product is zero or until the desired number of
decimal places is reached. The carried digits, or carries generated by the
multiplications produce the binary number. The first carry produced is the MSB and
the last carry is the LSB.
CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15)
Page / Muka Surat : 3
Of / Drpd : 16
iii. Convert From The Binary Form To Decimal Form.
The decimal value of any binary number can be found by adding the weights of all
bits that are I and discarding the weight of all bits that are 0. For an example the
conversion of the binary number 11011012 to decimal number as below:
iv. Convert From The Binary Form To Decimal Form Including Fractions.
Example the conversion of the binary fraction number 0.10112 to decimal number is
as below:
3. ADD AND SUBTRACT BINARY NUMBERS INCLUDING FRACTIONS
i. Addition Operation.
The four basic rules for adding two binary digits (bits) are as follows.
CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15)
Page / Muka Surat : 4
Of / Drpd : 16
Example: Compute the addition operation of the binary number 1012 and 102
Example: Add the binary number 10102 and 112
Example: Add the binary number 110102 and 11002
ii. Subtraction Operation.
The four basic rules for subtracting bits are as follows.
Example: Subtract the binary number 10102 from 100012
CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15)
Page / Muka Surat : 5
Of / Drpd : 16
4. 1’s AND 2’s COMPLIMENTS OF BINARY NUMBER
The 1’s and 2’s compliment of binary numbers are important because they permit
the representation of negative (-ve) numbers.
i. 1’s Compliment.
The 1’s compliment of a binary is found by changing all 1’s to 0s and all 0s to 1s. In
other words, change each of bits in the number to its complement. The operation is
compute as examples shown below.
Example: Find the 1’s compliment of
10110010
Example: Find the 1’s compliment of
00011010
ii. 2’s Compliment.
The 2’s complement of a binary number is formed by taking the 1’s complement of
the number and adding 1 to the least significant bit (LSB) position.
Example: Find the 2’s compliment of
10111000
Example: Find the 2’s compliment of
00010110
CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15)
Page / Muka Surat : 6
Of / Drpd : 16
5. EXPRESS SIGNED NUMBERS IN BINARY FORM
The left - most bit in a signed binary number is the sign bit, which tells you whether
the number is positive or negative. A 0 sign bit indicates a positive number, and a 1
sign bit indicates a negative number.
i. Sign Magnitude Form.
When a signed binary number is represented in sign - magnitude, the left - most bits
is the sign bit and the remaining bits are the magnitude bits. The magnitude bits are
in true (un-complemented) binary for both positive and negative numbers.
For example, the decimal number +25 is expressed as an 8-bits signed number
using the sign-magnitude form as shown below.
The decimal number -25 is expressed as 1 0 0 1 1 0 0 1. Notice that the only
difference between +25 and -25 is the sign bit because the magnitude bits are in
true binary for both positive and negative numbers. In the sign-magnitude form, a
negative number has the same magnitude bits as the corresponding positive
number but the sign bit is a 1 rather than zero.
ii. 1’s Complement Form.
Positive numbers in l’s complement form are represented the same way as the
positive sign-magnitude numbers. Negative numbers, however, are the 1’s
complements of the corresponding positive numbers. For example, using eight bits,
the decimal number -25 is expressed as the 1’s complement of +25 (00011001) as
11100110. In the 1’s complement form, a negative number is the 1’s complement of
the corresponding positive number.
CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15)
Page / Muka Surat : 7
Of / Drpd : 16
iii. 2’s Complement Form.
Positive numbers in 2’s complement form are represented the same way as in the
sign-magnitude and 1’s complement forms. Negative numbers are the 2’s
complements of the corresponding positive numbers.
Example: Express decimal number -25 as 2’s complement.
In the 2’s complement form, a negative number is the 2’s complement of the
corresponding positive number.
Example: Express the decimal number -39 as an 8 bit number in the sign-
magnitude, 1’s complement and 2’s complement forms.
+39 = 00100111
In the sign-magnitude form -39 = 10100111
 In 1‘s complement form -39,
 In 2 ‘s complement form -39,
CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15)
Page / Muka Surat : 8
Of / Drpd : 16
6. ARITHMETIC OPERATIONS WITH SIGNED NUMBERS
In this topic you will learn how signed numbers are added, subtracted, multiplied
and divided. Because the 2’s complement form for representing signed numbers is
the most widely used in computers and microprocessor-based systems, the
coverage in this topic is limited to 2’s complement arithmetic.
i. Addition In 2’s Complement System.
Let’s take one case at a time using 8-bit signed numbers as examples.
• CASE 1: Two positive numbers. Add +7 with +4.
• CASE 2: Positive number and smaller negative number. Add +15 with -6.
• CASE 3: Positive number and larger negative number. Add +16 with -24.
• CASE 4: Two negative number. Add -5 with -9.
CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15)
Page / Muka Surat : 9
Of / Drpd : 16
• CASE 5: Equal and opposite number. Add -9 with +9.
ii. Subtraction In 2’s Complement System.
Negate the subtrahend - will change the subtrahend to its equivalent value of
opposite sign while adding the negation to the minuend - the result will represent the
difference in between the subtrahend and minuend. Discard any final carry bit.
Example: Perform each of the following subtractions of the signed numbers.
CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15)
Page / Muka Surat : 10
Of / Drpd : 16
7. CONVERSION OF BASE IN NUMBERING SYSTEMS
i. Octal to Binary Conversion.
Because each octal digit can be represented by a 3-bit binary number, it is very
easy to convert from octal to binary. Each octal digit is represented by three bits as
shown below.
Example: Convert each of the following octal numbers to binary.
a) 138 b) 258 c) 1408 d) 72568
ii. Binary to Octal Conversion.
Example: Convert each of the following binary numbers to octal.
CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15)
Page / Muka Surat : 11
Of / Drpd : 16
iii. Binary to Hexadecimal Conversion.
The hexadecimal number system has sixteen digits and is used primarily as a
compact way of displaying or writing binary numbers because it is very easy to
convert between binary and hexadecimal.
Hexadecimal is widely used in computer and microprocessor application. The
hexadecimal number system has of sixteen; that is it is composed of 16 digits and
alphabetic characters. Most digital systems process binary data in groups that are
multiples of four bits, making the hexadecimal number very convenient because
each hexadecimal digit represents a 4-bit binary number as listed below.
DECIMAL BINARY HEXADECIMAL
0 0 0 0 0 0
1 0 0 0 1 1
2 0 0 1 0 2
3 0 0 1 1 3
4 0 1 0 0 4
5 0 1 0 1 5
6 0 1 1 0 6
7 0 1 1 1 7
8 1 0 0 0 8
9 1 0 0 1 9
10 1 0 1 0 A
11 1 0 1 1 B
12 1 1 0 0 C
13 1 1 0 1 D
14 1 1 1 0 E
15 1 1 1 1 F
CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15)
Page / Muka Surat : 12
Of / Drpd : 16
Example: Convert the following binary numbers to hexadecimal.
iv. Hexadecimal to Binary Conversion.
Example: Determine the binary numbers for the following hexadecimal numbers.
CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15)
Page / Muka Surat : 13
Of / Drpd : 16
QUESTION/ SOALAN:
Answer all the questions.
1. Compute the following operation.
2. Determine the positional value of 7 of the following.
i. 17 = ________________________________________
ii. 70 = ________________________________________
iii. 117 = ________________________________________
iv. 276 = ________________________________________
v. 8794 = ________________________________________
3. Compute the following sign-magnitude operations.
i. (-11) + (-23).
ii. (+3) + (-7).
CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15)
Page / Muka Surat : 14
Of / Drpd : 16
2 X 101
+ 8 X 100
=
4. Convert each of the following base to decimal.
i. 10012 = _____________________
ii. A16 = _____________________
iii. 4F16 = _____________________
iv. 01012 = _____________________
v. 138 = _____________________
CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15)
Page / Muka Surat : 15
Of / Drpd : 16
REFERENCE/RUJUKAN:
1. Ronald J. Tocci (Fifth Edition, 2008). Prentice Hall International., Digital System
– Principle and Application. Pages : 132 till 150.
2. Tocci., Widmer., Moss (Tenth Edition, 2013). Pearson International Edition.,
Digital System – Principle and Application. Pages : 115 till 135.
3. Floyd (Ninth Edition, 2010). Pearson Prentice Hall., Digital Fundamental. Pages :
145 till 163.
4. Nigel P. Cook (2010). Prentice Hall., Introductory Digital Electronic. Pages : 112
till 125.
5. William Kleitz (Fifth Edition, 2011)., Prentice Hall., Digital Electronics – A
practical Approach. Pages : 110 till 132.
CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15)
Page / Muka Surat : 16
Of / Drpd : 16

More Related Content

What's hot

Fico interview questions set 14
Fico interview questions set 14Fico interview questions set 14
Fico interview questions set 14Chinmay Damle
 
LL Label Output and Data Entry Guide Sample
LL Label Output and Data Entry Guide SampleLL Label Output and Data Entry Guide Sample
LL Label Output and Data Entry Guide SampleSteve Smith
 
Mr20 enus 10-Report Design in Management Reporter 2.0 for Microsoft Dynamics®...
Mr20 enus 10-Report Design in Management Reporter 2.0 for Microsoft Dynamics®...Mr20 enus 10-Report Design in Management Reporter 2.0 for Microsoft Dynamics®...
Mr20 enus 10-Report Design in Management Reporter 2.0 for Microsoft Dynamics®...Sami JAMMALI
 
Fico interview questions set 8
Fico interview questions set 8Fico interview questions set 8
Fico interview questions set 8Chinmay Damle
 
What is bcd number system
What is bcd number systemWhat is bcd number system
What is bcd number systemMuhammad Shahid
 
BCD to Decimal - Digital Electronics
BCD to Decimal - Digital ElectronicsBCD to Decimal - Digital Electronics
BCD to Decimal - Digital ElectronicsMilap Bhanderi
 
Fico interview questions set 12
Fico interview questions set 12Fico interview questions set 12
Fico interview questions set 12Chinmay Damle
 
Fico interview questions set 15
Fico interview questions set 15Fico interview questions set 15
Fico interview questions set 15Chinmay Damle
 
Digital electronics- BCD & Decoder
Digital electronics- BCD & DecoderDigital electronics- BCD & Decoder
Digital electronics- BCD & DecoderPritam Shil
 
3.codes( binary code ,excess 3, gray code )
3.codes( binary code ,excess 3, gray code )3.codes( binary code ,excess 3, gray code )
3.codes( binary code ,excess 3, gray code )MdFazleRabbi18
 
Fico interview questions set 9
Fico interview questions set 9Fico interview questions set 9
Fico interview questions set 9Chinmay Damle
 
Fico interview questions set 16
Fico interview questions set 16Fico interview questions set 16
Fico interview questions set 16Chinmay Damle
 
Weighted and Non Weighted Codes
Weighted and Non Weighted CodesWeighted and Non Weighted Codes
Weighted and Non Weighted CodesSubhamSatpathy2
 
Fico interview questions set 4
Fico interview questions set 4Fico interview questions set 4
Fico interview questions set 4Chinmay Damle
 
BCD,GRAY and EXCESS 3 codes
BCD,GRAY and EXCESS 3 codesBCD,GRAY and EXCESS 3 codes
BCD,GRAY and EXCESS 3 codesstudent
 
Excess 3 to bcd converter
Excess 3 to bcd converterExcess 3 to bcd converter
Excess 3 to bcd converterGarla Prajwal
 

What's hot (20)

Fico interview questions set 14
Fico interview questions set 14Fico interview questions set 14
Fico interview questions set 14
 
LL Label Output and Data Entry Guide Sample
LL Label Output and Data Entry Guide SampleLL Label Output and Data Entry Guide Sample
LL Label Output and Data Entry Guide Sample
 
Mr20 enus 10-Report Design in Management Reporter 2.0 for Microsoft Dynamics®...
Mr20 enus 10-Report Design in Management Reporter 2.0 for Microsoft Dynamics®...Mr20 enus 10-Report Design in Management Reporter 2.0 for Microsoft Dynamics®...
Mr20 enus 10-Report Design in Management Reporter 2.0 for Microsoft Dynamics®...
 
Fico interview questions set 8
Fico interview questions set 8Fico interview questions set 8
Fico interview questions set 8
 
What is bcd number system
What is bcd number systemWhat is bcd number system
What is bcd number system
 
BCD to Decimal - Digital Electronics
BCD to Decimal - Digital ElectronicsBCD to Decimal - Digital Electronics
BCD to Decimal - Digital Electronics
 
Number codes
Number codesNumber codes
Number codes
 
Fico interview questions set 12
Fico interview questions set 12Fico interview questions set 12
Fico interview questions set 12
 
Fico interview questions set 15
Fico interview questions set 15Fico interview questions set 15
Fico interview questions set 15
 
Binary codes
Binary codesBinary codes
Binary codes
 
Digital electronics- BCD & Decoder
Digital electronics- BCD & DecoderDigital electronics- BCD & Decoder
Digital electronics- BCD & Decoder
 
Binary codes
Binary codesBinary codes
Binary codes
 
3.codes( binary code ,excess 3, gray code )
3.codes( binary code ,excess 3, gray code )3.codes( binary code ,excess 3, gray code )
3.codes( binary code ,excess 3, gray code )
 
Fico interview questions set 9
Fico interview questions set 9Fico interview questions set 9
Fico interview questions set 9
 
Fico interview questions set 16
Fico interview questions set 16Fico interview questions set 16
Fico interview questions set 16
 
Weighted and Non Weighted Codes
Weighted and Non Weighted CodesWeighted and Non Weighted Codes
Weighted and Non Weighted Codes
 
Fico interview questions set 4
Fico interview questions set 4Fico interview questions set 4
Fico interview questions set 4
 
Basic math 1
Basic math 1Basic math 1
Basic math 1
 
BCD,GRAY and EXCESS 3 codes
BCD,GRAY and EXCESS 3 codesBCD,GRAY and EXCESS 3 codes
BCD,GRAY and EXCESS 3 codes
 
Excess 3 to bcd converter
Excess 3 to bcd converterExcess 3 to bcd converter
Excess 3 to bcd converter
 

Viewers also liked

Instrumen & Peralatan Pengujian (Multimeter)
Instrumen & Peralatan Pengujian (Multimeter)Instrumen & Peralatan Pengujian (Multimeter)
Instrumen & Peralatan Pengujian (Multimeter)athirahchehusin
 
Permasalahan Erosi dan Abrasi di pantai
Permasalahan Erosi dan Abrasi di pantai Permasalahan Erosi dan Abrasi di pantai
Permasalahan Erosi dan Abrasi di pantai Ashar Asham
 
Scientific and Technical Translation in English: Week 2
Scientific and Technical Translation in English: Week 2Scientific and Technical Translation in English: Week 2
Scientific and Technical Translation in English: Week 2Ron Martinez
 
Kertas Kerja (PLC)
Kertas Kerja (PLC)Kertas Kerja (PLC)
Kertas Kerja (PLC)juan_fjfn
 
Kertas penerangan
Kertas peneranganKertas penerangan
Kertas peneranganAida Nur
 
Thiviolympic giai toan tren mang lop 2- 2013 - vong 15
Thiviolympic  giai toan tren mang lop 2- 2013 - vong 15Thiviolympic  giai toan tren mang lop 2- 2013 - vong 15
Thiviolympic giai toan tren mang lop 2- 2013 - vong 15tieuhocvn .info
 
2011 International Kangaroo mathematics contest
2011 International Kangaroo mathematics contest2011 International Kangaroo mathematics contest
2011 International Kangaroo mathematics contestAsad Khalid
 

Viewers also liked (11)

Wim
WimWim
Wim
 
Instrumen & Peralatan Pengujian (Multimeter)
Instrumen & Peralatan Pengujian (Multimeter)Instrumen & Peralatan Pengujian (Multimeter)
Instrumen & Peralatan Pengujian (Multimeter)
 
Permasalahan Erosi dan Abrasi di pantai
Permasalahan Erosi dan Abrasi di pantai Permasalahan Erosi dan Abrasi di pantai
Permasalahan Erosi dan Abrasi di pantai
 
Scientific and Technical Translation in English: Week 2
Scientific and Technical Translation in English: Week 2Scientific and Technical Translation in English: Week 2
Scientific and Technical Translation in English: Week 2
 
As1 multimeter
As1 multimeterAs1 multimeter
As1 multimeter
 
KERTAS TUGASAN
KERTAS TUGASANKERTAS TUGASAN
KERTAS TUGASAN
 
KERTAS PENERANGAN
KERTAS PENERANGAN KERTAS PENERANGAN
KERTAS PENERANGAN
 
Kertas Kerja (PLC)
Kertas Kerja (PLC)Kertas Kerja (PLC)
Kertas Kerja (PLC)
 
Kertas penerangan
Kertas peneranganKertas penerangan
Kertas penerangan
 
Thiviolympic giai toan tren mang lop 2- 2013 - vong 15
Thiviolympic  giai toan tren mang lop 2- 2013 - vong 15Thiviolympic  giai toan tren mang lop 2- 2013 - vong 15
Thiviolympic giai toan tren mang lop 2- 2013 - vong 15
 
2011 International Kangaroo mathematics contest
2011 International Kangaroo mathematics contest2011 International Kangaroo mathematics contest
2011 International Kangaroo mathematics contest
 

Similar to Information sheet/Kertas Penerangan

Unit1_Part2-Machine_Instructions_Programs_7_9_2018_3pm.ppt
Unit1_Part2-Machine_Instructions_Programs_7_9_2018_3pm.pptUnit1_Part2-Machine_Instructions_Programs_7_9_2018_3pm.ppt
Unit1_Part2-Machine_Instructions_Programs_7_9_2018_3pm.pptChiragSuresh
 
Comp Arithmetic Basic.ppt
Comp Arithmetic Basic.pptComp Arithmetic Basic.ppt
Comp Arithmetic Basic.pptskatiarrahaman
 
W3 Chapter 2B Notes CCB1223 Digital Logic.pdf
W3 Chapter 2B Notes CCB1223 Digital Logic.pdfW3 Chapter 2B Notes CCB1223 Digital Logic.pdf
W3 Chapter 2B Notes CCB1223 Digital Logic.pdfMOHDZAMRIBINIBRAHIM1
 
Unit 1 data representation and computer arithmetic
Unit 1  data representation and computer arithmeticUnit 1  data representation and computer arithmetic
Unit 1 data representation and computer arithmeticAmrutaMehata
 
DLD_PPT_0.pptx
DLD_PPT_0.pptxDLD_PPT_0.pptx
DLD_PPT_0.pptxECENAAC2
 
Survey On Two-Term Dot Product Of Multiplier Using Floating Point
Survey On Two-Term Dot Product Of Multiplier Using Floating PointSurvey On Two-Term Dot Product Of Multiplier Using Floating Point
Survey On Two-Term Dot Product Of Multiplier Using Floating PointIRJET Journal
 
Design of 32-bit Floating Point Unit for Advanced Processors
Design of 32-bit Floating Point Unit for Advanced ProcessorsDesign of 32-bit Floating Point Unit for Advanced Processors
Design of 32-bit Floating Point Unit for Advanced ProcessorsIJERA Editor
 
IRJET-Design and Implementation of LNS based Approximate Multiplier using Mit...
IRJET-Design and Implementation of LNS based Approximate Multiplier using Mit...IRJET-Design and Implementation of LNS based Approximate Multiplier using Mit...
IRJET-Design and Implementation of LNS based Approximate Multiplier using Mit...IRJET Journal
 
Number Systems.ppt
Number Systems.pptNumber Systems.ppt
Number Systems.pptzorogoh2
 
Csc1401 lecture03 - computer arithmetic - arithmetic and logic unit (alu)
Csc1401   lecture03 - computer arithmetic - arithmetic and logic unit (alu)Csc1401   lecture03 - computer arithmetic - arithmetic and logic unit (alu)
Csc1401 lecture03 - computer arithmetic - arithmetic and logic unit (alu)IIUM
 
binary arithmetic rules
binary arithmetic rulesbinary arithmetic rules
binary arithmetic rulesstudent
 
index of all of the financial accounts in a company's general ledger. In shor...
index of all of the financial accounts in a company's general ledger. In shor...index of all of the financial accounts in a company's general ledger. In shor...
index of all of the financial accounts in a company's general ledger. In shor...mayurjagdale4
 
Neumerical Methods.pptx
Neumerical Methods.pptxNeumerical Methods.pptx
Neumerical Methods.pptxPayelDalal
 

Similar to Information sheet/Kertas Penerangan (20)

Unit1_Part2-Machine_Instructions_Programs_7_9_2018_3pm.ppt
Unit1_Part2-Machine_Instructions_Programs_7_9_2018_3pm.pptUnit1_Part2-Machine_Instructions_Programs_7_9_2018_3pm.ppt
Unit1_Part2-Machine_Instructions_Programs_7_9_2018_3pm.ppt
 
Comp Arithmetic Basic.ppt
Comp Arithmetic Basic.pptComp Arithmetic Basic.ppt
Comp Arithmetic Basic.ppt
 
IARE_DLD_PPT_0.pdf
IARE_DLD_PPT_0.pdfIARE_DLD_PPT_0.pdf
IARE_DLD_PPT_0.pdf
 
W3 Chapter 2B Notes CCB1223 Digital Logic.pdf
W3 Chapter 2B Notes CCB1223 Digital Logic.pdfW3 Chapter 2B Notes CCB1223 Digital Logic.pdf
W3 Chapter 2B Notes CCB1223 Digital Logic.pdf
 
Number codes students
Number codes studentsNumber codes students
Number codes students
 
Unit 1 data representation and computer arithmetic
Unit 1  data representation and computer arithmeticUnit 1  data representation and computer arithmetic
Unit 1 data representation and computer arithmetic
 
DLD_PPT_0.pptx
DLD_PPT_0.pptxDLD_PPT_0.pptx
DLD_PPT_0.pptx
 
Survey On Two-Term Dot Product Of Multiplier Using Floating Point
Survey On Two-Term Dot Product Of Multiplier Using Floating PointSurvey On Two-Term Dot Product Of Multiplier Using Floating Point
Survey On Two-Term Dot Product Of Multiplier Using Floating Point
 
Design of 32-bit Floating Point Unit for Advanced Processors
Design of 32-bit Floating Point Unit for Advanced ProcessorsDesign of 32-bit Floating Point Unit for Advanced Processors
Design of 32-bit Floating Point Unit for Advanced Processors
 
IRJET-Design and Implementation of LNS based Approximate Multiplier using Mit...
IRJET-Design and Implementation of LNS based Approximate Multiplier using Mit...IRJET-Design and Implementation of LNS based Approximate Multiplier using Mit...
IRJET-Design and Implementation of LNS based Approximate Multiplier using Mit...
 
Unit 2 Arithmetic
Unit 2 ArithmeticUnit 2 Arithmetic
Unit 2 Arithmetic
 
Number Systems Basic Concepts
Number Systems Basic ConceptsNumber Systems Basic Concepts
Number Systems Basic Concepts
 
Number Systems.ppt
Number Systems.pptNumber Systems.ppt
Number Systems.ppt
 
UNIT 1 (1).pptx
UNIT 1 (1).pptxUNIT 1 (1).pptx
UNIT 1 (1).pptx
 
Csc1401 lecture03 - computer arithmetic - arithmetic and logic unit (alu)
Csc1401   lecture03 - computer arithmetic - arithmetic and logic unit (alu)Csc1401   lecture03 - computer arithmetic - arithmetic and logic unit (alu)
Csc1401 lecture03 - computer arithmetic - arithmetic and logic unit (alu)
 
Calculation.pptx
Calculation.pptxCalculation.pptx
Calculation.pptx
 
binary arithmetic rules
binary arithmetic rulesbinary arithmetic rules
binary arithmetic rules
 
index of all of the financial accounts in a company's general ledger. In shor...
index of all of the financial accounts in a company's general ledger. In shor...index of all of the financial accounts in a company's general ledger. In shor...
index of all of the financial accounts in a company's general ledger. In shor...
 
Neumerical Methods.pptx
Neumerical Methods.pptxNeumerical Methods.pptx
Neumerical Methods.pptx
 
Arithmetic circuits
Arithmetic circuitsArithmetic circuits
Arithmetic circuits
 

Recently uploaded

mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...M56BOOKSTORE PRODUCT/SERVICE
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 

Recently uploaded (20)

mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 

Information sheet/Kertas Penerangan

  • 1. INSTITUT KEMAHIRAN MARA BESUT JALAN BATU TUMBUH, ALOR LINTANG, 22000 BESUT, TERENGGANU DARUL IMAN. INFORMATION SHEET ( KERTAS PENERANGAN ) PROGRAM’S CODE & NAME/ KOD DAN NAMA PROGRAM EE-021-2:2012 INDUSTRIAL ELECTRONICS LEVEL/ TAHAP L2 COMPETENCY UNIT NO. AND TITLE/ NO. DAN TAJUK UNIT KOMPETENSI C02 INSTRUMENT AND TEST EQUIPMENT SETUP & HANDLING WORK ACTIVITIES NO. AND STATEMENT/ NO. DAN PENYATAAN AKTIVITI KERJA 1. IDENTIFY INSTRUMENT AND TEST EQUIPMENT SET UP & HANDLING 2. PREPARE FOR INSTRUMENT AND TEST EQUIPMENT SET UP & HANDLING 3. SET UP INSTRUMENT AND TEST EQUIPMENT 4. PERFORM RECORDING AND TAGGING OF INSTRUMENT & TEST EQUIPMENT 5. REPORT INSTRUMENT AND TEST EQUIPMENT SET UP & HANDLING CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15) Page/ Muka Surat: 1 Of / Drpd : 16 TITLE/ TAJUK: NUMBER SYSTEMS IN DIGITAL PURPOSE/ TUJUAN: This information sheet purposes to explain details on number systems involved in digital systems. The explanations related on binary number system, addition and subtraction operations of binary number system including fractions and non-fractions, 1’s and 2’s compliments of binary number and arithmetic operations and conversion of base in numbering systems.
  • 2. INFORMATION/ PENERANGAN: The binary number system and digital codes are fundamental to computers and to digital electronics in each general. In this chapter, the binary number and its relationship to other number system such as decimal, hexadecimal and octal is presented. 1. COUNT IN BINARY NUMBER SYSTEM The binary number is simply another way to represent quantities. The binary number system is less complicated than the decimal system because it has only two digits. The two binary digits (bits) are I and 0. In a number system, this is expressed as a base of 2. As with the decimal number system, each bit (digit) position of a binary number carries a particular weight that determines the magnitude of that number. 2. BINARY AND DECIMAL NUMBER CONVERSION i. Convert From The Decimal Form To Binary Form – Without Fractions. To convert from decimal to binary, use repeated division-by-2. For example, the conversion of the decimal number I210 to binary by repeated division by 2. Converting decimal number 12 to binary begin by dividing 12 by 2. Then divide each resulting quotient by 2 until there is a 0 whole number quotient. The reminder generates each division form the binary number. The first reminder to be produced is the LSB (least significant bit) in the binary number and the last reminder to be produced is the MSB (most significant bit). CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15) Page / Muka Surat : 2 Of / Drpd : 16
  • 3. ii. Convert From The Decimal Form To Binary Form Involving Fractions. Decimal fraction can be converted to binary by repeated multiplication-by-2. For example, the conversion of the decimal number O.312510 to binary by repeated multiplication by 2. Converting the decimal fraction 0.312510 to binary, begin by multiplying 0.3125 by 2 and then multiplying each resulting fractional part of the product by 2 until the fractional product is zero or until the desired number of decimal places is reached. The carried digits, or carries generated by the multiplications produce the binary number. The first carry produced is the MSB and the last carry is the LSB. CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15) Page / Muka Surat : 3 Of / Drpd : 16
  • 4. iii. Convert From The Binary Form To Decimal Form. The decimal value of any binary number can be found by adding the weights of all bits that are I and discarding the weight of all bits that are 0. For an example the conversion of the binary number 11011012 to decimal number as below: iv. Convert From The Binary Form To Decimal Form Including Fractions. Example the conversion of the binary fraction number 0.10112 to decimal number is as below: 3. ADD AND SUBTRACT BINARY NUMBERS INCLUDING FRACTIONS i. Addition Operation. The four basic rules for adding two binary digits (bits) are as follows. CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15) Page / Muka Surat : 4 Of / Drpd : 16
  • 5. Example: Compute the addition operation of the binary number 1012 and 102 Example: Add the binary number 10102 and 112 Example: Add the binary number 110102 and 11002 ii. Subtraction Operation. The four basic rules for subtracting bits are as follows. Example: Subtract the binary number 10102 from 100012 CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15) Page / Muka Surat : 5 Of / Drpd : 16
  • 6. 4. 1’s AND 2’s COMPLIMENTS OF BINARY NUMBER The 1’s and 2’s compliment of binary numbers are important because they permit the representation of negative (-ve) numbers. i. 1’s Compliment. The 1’s compliment of a binary is found by changing all 1’s to 0s and all 0s to 1s. In other words, change each of bits in the number to its complement. The operation is compute as examples shown below. Example: Find the 1’s compliment of 10110010 Example: Find the 1’s compliment of 00011010 ii. 2’s Compliment. The 2’s complement of a binary number is formed by taking the 1’s complement of the number and adding 1 to the least significant bit (LSB) position. Example: Find the 2’s compliment of 10111000 Example: Find the 2’s compliment of 00010110 CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15) Page / Muka Surat : 6 Of / Drpd : 16
  • 7. 5. EXPRESS SIGNED NUMBERS IN BINARY FORM The left - most bit in a signed binary number is the sign bit, which tells you whether the number is positive or negative. A 0 sign bit indicates a positive number, and a 1 sign bit indicates a negative number. i. Sign Magnitude Form. When a signed binary number is represented in sign - magnitude, the left - most bits is the sign bit and the remaining bits are the magnitude bits. The magnitude bits are in true (un-complemented) binary for both positive and negative numbers. For example, the decimal number +25 is expressed as an 8-bits signed number using the sign-magnitude form as shown below. The decimal number -25 is expressed as 1 0 0 1 1 0 0 1. Notice that the only difference between +25 and -25 is the sign bit because the magnitude bits are in true binary for both positive and negative numbers. In the sign-magnitude form, a negative number has the same magnitude bits as the corresponding positive number but the sign bit is a 1 rather than zero. ii. 1’s Complement Form. Positive numbers in l’s complement form are represented the same way as the positive sign-magnitude numbers. Negative numbers, however, are the 1’s complements of the corresponding positive numbers. For example, using eight bits, the decimal number -25 is expressed as the 1’s complement of +25 (00011001) as 11100110. In the 1’s complement form, a negative number is the 1’s complement of the corresponding positive number. CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15) Page / Muka Surat : 7 Of / Drpd : 16
  • 8. iii. 2’s Complement Form. Positive numbers in 2’s complement form are represented the same way as in the sign-magnitude and 1’s complement forms. Negative numbers are the 2’s complements of the corresponding positive numbers. Example: Express decimal number -25 as 2’s complement. In the 2’s complement form, a negative number is the 2’s complement of the corresponding positive number. Example: Express the decimal number -39 as an 8 bit number in the sign- magnitude, 1’s complement and 2’s complement forms. +39 = 00100111 In the sign-magnitude form -39 = 10100111  In 1‘s complement form -39,  In 2 ‘s complement form -39, CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15) Page / Muka Surat : 8 Of / Drpd : 16
  • 9. 6. ARITHMETIC OPERATIONS WITH SIGNED NUMBERS In this topic you will learn how signed numbers are added, subtracted, multiplied and divided. Because the 2’s complement form for representing signed numbers is the most widely used in computers and microprocessor-based systems, the coverage in this topic is limited to 2’s complement arithmetic. i. Addition In 2’s Complement System. Let’s take one case at a time using 8-bit signed numbers as examples. • CASE 1: Two positive numbers. Add +7 with +4. • CASE 2: Positive number and smaller negative number. Add +15 with -6. • CASE 3: Positive number and larger negative number. Add +16 with -24. • CASE 4: Two negative number. Add -5 with -9. CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15) Page / Muka Surat : 9 Of / Drpd : 16
  • 10. • CASE 5: Equal and opposite number. Add -9 with +9. ii. Subtraction In 2’s Complement System. Negate the subtrahend - will change the subtrahend to its equivalent value of opposite sign while adding the negation to the minuend - the result will represent the difference in between the subtrahend and minuend. Discard any final carry bit. Example: Perform each of the following subtractions of the signed numbers. CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15) Page / Muka Surat : 10 Of / Drpd : 16
  • 11. 7. CONVERSION OF BASE IN NUMBERING SYSTEMS i. Octal to Binary Conversion. Because each octal digit can be represented by a 3-bit binary number, it is very easy to convert from octal to binary. Each octal digit is represented by three bits as shown below. Example: Convert each of the following octal numbers to binary. a) 138 b) 258 c) 1408 d) 72568 ii. Binary to Octal Conversion. Example: Convert each of the following binary numbers to octal. CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15) Page / Muka Surat : 11 Of / Drpd : 16
  • 12. iii. Binary to Hexadecimal Conversion. The hexadecimal number system has sixteen digits and is used primarily as a compact way of displaying or writing binary numbers because it is very easy to convert between binary and hexadecimal. Hexadecimal is widely used in computer and microprocessor application. The hexadecimal number system has of sixteen; that is it is composed of 16 digits and alphabetic characters. Most digital systems process binary data in groups that are multiples of four bits, making the hexadecimal number very convenient because each hexadecimal digit represents a 4-bit binary number as listed below. DECIMAL BINARY HEXADECIMAL 0 0 0 0 0 0 1 0 0 0 1 1 2 0 0 1 0 2 3 0 0 1 1 3 4 0 1 0 0 4 5 0 1 0 1 5 6 0 1 1 0 6 7 0 1 1 1 7 8 1 0 0 0 8 9 1 0 0 1 9 10 1 0 1 0 A 11 1 0 1 1 B 12 1 1 0 0 C 13 1 1 0 1 D 14 1 1 1 0 E 15 1 1 1 1 F CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15) Page / Muka Surat : 12 Of / Drpd : 16
  • 13. Example: Convert the following binary numbers to hexadecimal. iv. Hexadecimal to Binary Conversion. Example: Determine the binary numbers for the following hexadecimal numbers. CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15) Page / Muka Surat : 13 Of / Drpd : 16
  • 14. QUESTION/ SOALAN: Answer all the questions. 1. Compute the following operation. 2. Determine the positional value of 7 of the following. i. 17 = ________________________________________ ii. 70 = ________________________________________ iii. 117 = ________________________________________ iv. 276 = ________________________________________ v. 8794 = ________________________________________ 3. Compute the following sign-magnitude operations. i. (-11) + (-23). ii. (+3) + (-7). CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15) Page / Muka Surat : 14 Of / Drpd : 16 2 X 101 + 8 X 100 =
  • 15. 4. Convert each of the following base to decimal. i. 10012 = _____________________ ii. A16 = _____________________ iii. 4F16 = _____________________ iv. 01012 = _____________________ v. 138 = _____________________ CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15) Page / Muka Surat : 15 Of / Drpd : 16
  • 16. REFERENCE/RUJUKAN: 1. Ronald J. Tocci (Fifth Edition, 2008). Prentice Hall International., Digital System – Principle and Application. Pages : 132 till 150. 2. Tocci., Widmer., Moss (Tenth Edition, 2013). Pearson International Edition., Digital System – Principle and Application. Pages : 115 till 135. 3. Floyd (Ninth Edition, 2010). Pearson Prentice Hall., Digital Fundamental. Pages : 145 till 163. 4. Nigel P. Cook (2010). Prentice Hall., Introductory Digital Electronic. Pages : 112 till 125. 5. William Kleitz (Fifth Edition, 2011)., Prentice Hall., Digital Electronics – A practical Approach. Pages : 110 till 132. CODE NO. / NO. KOD EE-021-2:2012-C02/P(2/15) Page / Muka Surat : 16 Of / Drpd : 16