1. The following k-map implements





Ask Your Doubts Here

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

  • By: guest on 02 Jun 2017 12.56 am
    As the K-map reveals W, X, Y, Z are the input lines to the device and D0 to D9 are the output lines which get activated depending upon the input combinations. As seen from k-map for W, X, Y, Z from 0000 to 1001 we have D0 to D9 outputs activated respectively. This operation is performed by BCD to Decimal decoder. Also it is called as 1 off 10 decoder, as only 1 of 10 output line is high.
Show Similar Question And Answers
QA->Daily weather map showing isobars is an example of which map?....
QA->In a road map the scale is 1 cm = 8 km. If there are two places of cm apart is marked in that map. Then the actual distance between that places is :....
QA->With which period do we associate the 'microlith' implements?....
QA->In our country, for the manufacturing of agricultural implements tools, mostly wood is used, because—....
QA->What is a line on a weather map joining all places of equal pressure called?....
MCQ->What will be the output of the program? TreeSet map = new TreeSet(); map.add("one"); map.add("two"); map.add("three"); map.add("four"); map.add("one"); Iterator it = map.iterator(); while (it.hasNext() ) { System.out.print( it.next() + " " ); }....
MCQ->interface Base { boolean m1 (); byte m2(short s); } which two code fragments will compile? interface Base2 implements Base {} abstract class Class2 extends Base { public boolean m1(){ return true; }} abstract class Class2 implements Base {} abstract class Class2 implements Base { public boolean m1(){ return (7 > 4); }} abstract class Class2 implements Base { protected boolean m1(){ return (5 > 7) }}....
MCQ->Consider the following statement (s) related to the scale of map. I. The larger the scale of the map, the larger the area it covers. II. The larger the scale of the map, the more generalized are the data it portrays. III. The smaller the scale of the map, the larger the area it covers. IV. The smaller the scale of the map, the more accurately can its content be displayed. Which of the following statement (s) is correct?....
MCQ->interface DoMath { double getArea(int rad); } interface MathPlus { double getVol(int b, int h); } / Missing Statements ? / which two code fragments inserted at end of the program, will allow to compile? class AllMath extends DoMath { double getArea(int r); } interface AllMath implements MathPlus { double getVol(int x, int y); } interface AllMath extends DoMath { float getAvg(int h, int l); } class AllMath implements MathPlus { double getArea(int rad); } abstract class AllMath implements DoMath, MathPlus { public double getArea(int rad) { return rad rad 3.14; } }....
MCQ->Which of the following statements are correct about a HashTable collection? It is a keyed collection. It is a ordered collection. It is an indexed collection. It implements a IDictionaryEnumerator interface in its inner class. The key - value pairs present in a HashTable can be accessed using the Keys and Values properties of the inner class that implements the IDictionaryEnumerator interface.....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution