Question Set

1. How many gates would be required to implement the following Boolean expression after simplification?XY+X(X+Z)+(X+Z)





Ask Your Doubts Here

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

Comments

Show Similar Question And Answers
QA->Father is aged three times more than his son Anil. After 8 years, he would be two and a half times of Anil"s age. After further 8 years, how many times would he be of Anil"s age?....
QA->Father is aged three times more than his son Ram . After 8 years, he would be two and a half times of Ram"s age. After further 8 years, how many times would he be of Ram"s age?....
QA->Mr. Shah is 30 years older than his son who is 5 years old. After how many years would Mr. Shah become 3 times as old as his son then?....
QA->The Governor General who passed General Service EnlistmentAct which decreed that all future recruits for Bengal army would have to give an undertaking to serve anywhere if their services might be required by the Government?....
QA->Which Indian state has become the first one to implement 10 per cent quota for Economically Weaker Sections (EWS) in general category?....
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->How many gates would be required to implement the following Boolean expression after simplification?XY+X(X+Z)+(X+Z)....
MCQ->How many gates would be required to implement the following Boolean expression after simplification? XY + X(X + Z) + Y(X + Z)....
MCQ->How many gates would be required to implement the following Boolean expression before simplification? XY + X(X + Z) + Y(X + Z)....
MCQ->Which two can be used to create a new Thread? Extend java.lang.Thread and override the run() method. Extend java.lang.Runnable and override the start() method. Implement java.lang.Thread and implement the run() method. Implement java.lang.Runnable and implement the run() method. Implement java.lang.Thread and implement the start() method.....
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