1. The number of distinct Boolean expression of 4 variables is





Write Comment

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

Comments

Tags
Show Similar Question And Answers
QA->The Boolean expression A(B+C)+AB+AC is independent of the Boolean variable:....
QA->Minimum number of AND gates required to implement the Boolean expression:ABC’ +AB’C +A’BC is....
QA->In Boolean algebra, x+xy =x is called:....
QA->Who was awarded Freedom of Expression Prize , a Norwegian Award, also known as Bjornson Prize?....
QA->In a hypothetical language, assume that all arithmetic operators have equal precedence and associate to the left. The expression 6x3-2-1x2 evaluates to :....
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 rules are used in choosing the repeating variables in dimensional analysis :1. Repeating variables should include the dependent variables2. Repeating variables should contain all primary units used in describing the variables in the problem3. Repeating variables should combine among themselves.4. Repeating variables should not contain the dependent variables.Select the correct answer using the codes given below :....
MCQ->With eleven distinct consonants and five distinct vowels, how many distinct six letter words can be formed if middle two positions are occupied by vowels (may be repeated) and first two and last two positions are occupied by consonants (all distinct)?....
MCQ-> Mathematicians are assigned a number called Erdos number (named after the famous mathematician, Paul Erdos). Only Paul Erdos himself has an Erdos number of zero. Any mathematician who has written a research paper with Erdos has an Erdos number of 1.For other mathematicians, the calculation of his/her Erdos number is illustrated below:Suppose that a mathematician X has co-authored papers with several other mathematicians. 'From among them, mathematician Y has the smallest Erdos number. Let the Erdos number of Y be y. Then X has an Erdos number of y+1. Hence any mathematician with no co-authorship chain connected to Erdos has an Erdos number of infinity. :In a seven day long mini-conference organized in memory of Paul Erdos, a close group of eight mathematicians, call them A, B, C, D, E, F, G and H, discussed some research problems. At the beginning of the conference, A was the only participant who had an infinite Erdos number. Nobody had an Erdos number less than that of F.On the third day of the conference F co-authored a paper jointly with A and C. This reduced the average Erdos number of the group of eight mathematicians to 3. The Erdos numbers of B, D, E, G and H remained unchanged with the writing of this paper. Further, no other co-authorship among any three members would have reduced the average Erdos number of the group of eight to as low as 3.• At the end of the third day, five members of this group had identical Erdos numbers while the other three had Erdos numbers distinct from each other.• On the fifth day, E co-authored a paper with F which reduced the group's average Erdos number by 0.5. The Erdos numbers of the remaining six were unchanged with the writing of this paper.• No other paper was written during the conference.The person having the largest Erdos number at the end of the conference must have had Erdos number (at that time):
 ....
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
DMCA.com Protection Status Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions