Skip to main content

Digital techniques__mul/div and codes




The binary multiplication and binary division are same as decimal number system. Now we are discussing here about codes. They are used to give instructions to computer.  here we are discussing digital codes lets see one by one.

1. BCD - it is binary coded decimal . BCD codes are heavily used in IBM processors and database. Binary-coded Decimal or BCD is a way of representing a decimal number as a string of bits suitable for use in electronic systems. Rather than converting the whole number into binary, BCD splits the number up into its digits and converts each digit to 4-bit binary. 

2. Gray codes- Today, Gray codes are widely used to facilitate error correction in digital communications such as digital terrestrial television and some cable TV systems. Gray codes are used in representation of K-MAP. 

3.ASCII codes- American Standard Code For Information Interchange. This ASCII code basically used for identifying characters and numerals in a keyboard. these are 8 bit sequence code and are used for identifying letters, numbers and special characters.

4. Excess-3 codes- Excess-3, also called XS3, is a non-weighted code used to express decimal number-s. It is another important binary code. It is particularly significant for arithmetic operations as it overcomes the shortcomings encountered while using the 8421 BCD code to add two decimal digits whose sum exceeds 9.

Comments

Popular posts from this blog

Digital Techniques_Descriptive Questions

 Descriptive Questions 1)Construct full adder circuit using K map. 2) Justify ‘NOR gate is called as universal gate’. Sketch relevant diagram. 3) Convert following Boolean equation to standard SOP form and implement using NAND-NAND logic. (i) y = A B C + ABC D + A C D (ii) y = PQ + PQR + PQ R 4)State the rules for BCD addition. 5)Draw two input OR gate, using ECL logic family (only diagram). 6)Realize full subtractor using K-map. 7)Describe positive and negative edge triggering methods of clock with their logic symbol. 8)Calculate the analog output of 4-bit DAC if the digital input is 1101. Assume VFS = 5V. 9)Draw the logic diagram of 4-bit SIPO shift register and explain its working principle. 10) Realize the following expression using K-map. Y = f(A, B, C, D) = Σ m(0, 2, 3, 5, 6, 7, 10, 11) + d (8, 14, 15) and implement it. 11)Simplify the following expression using Boolean laws. Y = (A + B) (A + C) Y = ABC + ABC + ABC 12)Draw the circuit of master slave JK FF using NAND gate and...

Digital techniques__BCD Adder