1. In boolean algebra, the overbar stands for the NOT operation, the plus sign stands for the _____ operation.






Ask Your Doubts Here

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

Comments

Show Similar Question And Answers
QA->If a  stands for +,  stands for x,  stands for <,  stands for = ,  stands for -,  stands for ÷ ,  stands for > Find out the correct choice: 15  3  72251 15  372251 15372251 15372251....
QA->The princely states that did not sign the Instrument of Accession by 15th August 1947 were Kashmir, Hyderabad and _____?....
QA->In a certain code, "FOP" stands for "OLD IS GOLD", POT stands for "GOLD IS PURE" and POM stands for GOLD IS COSTLY. Then how will "PURE OLD GOLD IS COSTLY" be written?....
QA->If A stands for +, B stands for -, c stands for x, then what is the value of (10 C 4) A (4 C 4) B 6?....
QA->If A stands for +, B stands for –, C stands for x, then what is the value of (10C4) A (4C4) – 6 ?....
MCQ->In boolean algebra, the overbar stands for the NOT operation, the plus sign stands for the _____ operation.....
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->In boolean algebra, the times sign stands for the _____ operation....
MCQ->Consider the following statements The sign of a floating point number depends on the sign of mantissa only.If the absolute value of a number is less than 1, the sign of exponent is zero or positive.With sign bit of mantissa as 0, increasing the exponent from a positive to a more positive value gives a larger floating point number. Which of the above are correct?....
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) }}....
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