1. The exclusive-OR is written in a Boolean equation as a plus sign with a circle around it.



Ask Your Doubts Here

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

Comments

Show Similar Question And Answers
QA->Post and Telegraph circle got bifuricated and Kerala Postal Circle came into existence in?....
QA->A steel wire when bent in the form of a square encloses an area of 121 sq. cm. If the same wire is bent into the form of a circle, the area of the circle is—....
QA->SSLC, plus two പഠനം പാതിവഴിയിൽ മുടങ്ങിയവർക്ക് സൗജന്യമായി തുടർ പഠനം നടത്താൻ കേരള പോലീസ് ആരംഭിച്ച പദ്ധതി?....
QA->If in a code language PRINCIPAL is written as MBOQSOMVW and TEACHER is written as FDVSZDB, how is CAPITAL written in that code ?....
QA->How are the orbits of planets around the Sun; or of satellites around the Earth;?....
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 exclusive-OR is written in a Boolean equation as a plus sign with a circle around it.....
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) }}....
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);....
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