1. Output logic levels for certain input conditions of a logic circuit may often be determined without using the Boolean expression.



Ask Your Doubts Here

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

Comments

Show Similar Question And Answers
QA->Which is electrical circuits used to get smooth de output from a rectified circuit called?....
QA->Method of cultivating plants without using soil but by using nutrient solution?....
QA->The electronic circuit which works only on two voltage levels (0 and 1) is called?....
QA->Voltage levels in a circuit is either represented by?....
QA->At the time of short-circuit; what will be the current in the circuit?....
MCQ->Output logic levels for certain input conditions of a logic circuit may often be determined without using the Boolean expression.....
MCQ->What will be the output of the program? public class BoolTest { public static void main(String [] args) { int result = 0; Boolean b1 = new Boolean("TRUE"); Boolean b2 = new Boolean("true"); Boolean b3 = new Boolean("tRuE"); Boolean b4 = new Boolean("false"); if (b1 == b2) / Line 10 / result = 1; if (b1.equals(b2) ) / Line 12 / result = result + 10; if (b2 == b4) / Line 14 / result = result + 100; if (b2.equals(b4) ) / Line 16 / result = result + 1000; if (b2.equals(b3) ) / Line 18 / result = result + 10000; System.out.println("result = " + result); } }....
MCQ->Which of the following conditions should be satisfied to call an astable multivibrator circuit using discrete components as a digital circuit? A flip-flop is always a digital circuit. Only when we assign 1 and 0 to the high and low levels of the output, a flip-flop is called a digital circuit. Only if the power, supply voltage is maintained at + 5 V or - 5 V, it is called a digital circuit. Only if it is in IC form, following the technology of IC manufacture, it is called a digital circuit.Select the correct answer from the codes given below:....
MCQ->The Boolean expression B⊕E is a simplified version of expression A BE + BCDE+ BC D E + A B D E + B C D E + A B D E then which of the following choice is correct? don't care conditions doesn't existdon't care conditions existd( 16, 18, 20, 23, 27, 29) is the set of don't care conditionsd( 16, 20, 22, 27, 29) is the set of don't care conditions....
MCQ->What will be the output of the program? class Test { public static void main(String [] args) { Test p = new Test(); p.start(); } void start() { boolean b1 = false; boolean b2 = fix(b1); System.out.println(b1 + " " + b2); } boolean fix(boolean b1) { b1 = true; return b1; } }....
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