Skip to main content

Digital techniques__conversion of number systems













here you will find conversion of number system. I am sure this will help you and very easy to learn. 

Tricks to remember 

1.when you convert decimal numbers into other number system then divide decimal number by radix of other number system.

 E.g. converting decimal number into hex then divide decimal number by 16. 

2. when you convert any number system into decimal then multiply converted  number digits by power of that converted number system. 

E.g. convert octal into decimal then multiply octal digits by power of 8. 

3. when you dealing with octal number system then make a group of 3 bits or represent number by group of 3 bits. E.g. 3=(011), 45=(100 101) etc.

4. when you dealing with hexadecimal number system then make a group of 4 bits or represent number by group of 4 bits. E.g. A=(1010), 3=(0011) etc. 

here you will find a total chart of conversion of number system.








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