1. The Boolean expression for a three-input AND gate is Y = A • B + C.



Ask Your Doubts Here

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

Comments

  • By: guest on 01 Jun 2017 11.38 pm
    Y = A • B • C
Show Similar Question And Answers
QA->The average of six numbers is x and the average of three of these is y. If the average of the remaining three is z, then....
QA->Earliest available inscription dated in the Kollam Era; the Mampalli Plate (149) is ascribed to?....
QA->Replace the question mark (?) in the following series? 113, 127, 131, 137, ?, 149....
QA->2021 ജൂലായിൽ ഏതു പ്രദേശത്താണ് 149 വർഷത്തോളമായി തുടരുന്ന ‘ദർബാർ നീക്കം’ എന്ന ചടങ്ങ് അവസാനിപ്പിച്ചത്?....
QA->For freedom of press and freedom of expression Gorbachev introduced ?....
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->The Boolean expression for a three-input AND gate is Y = A • B + C.....
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->import java.awt.; class Ticker extends Component { public static void main (String [] args) { Ticker t = new Ticker(); / Missing Statements ? / } } which two of the following statements, inserted independently, could legally be inserted into missing section of this code? boolean test = (Component instanceof t); boolean test = (t instanceof Ticker); boolean test = t.instanceof(Ticker); boolean test = (t instanceof Component);....
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