1. Match the following: List I (Laws of Boolean) List II (Relation algebra) A.Distributive law1.x + x = xB.DeMorgans law2.x(y + z) = xy + xzC.Idempotent law3.(x) = xD.Involution law4.(x + y) = xy





Ask Your Doubts Here

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

Comments

Show Similar Question And Answers
QA->State list, Union list, Concurrent list are included in which of the following schedule....
QA->State list, Union list, Concurrent list are included in which of the following schedule....
QA->Match​ ​the​ ​following: Rivers Towns a.Gomti Guwahati b.Brahmaputra Rajahmundry c.Godavari Tiruchirapalli d.Kaveri Lucknow....
QA->Information Technology Act, 2000 made amendment to which of the following existing laws?....
QA->Who is the author of “ Algebra of Infinite Justice”?....
MCQ->Match the following: List I (Laws of Boolean) List II (Relation algebra) A.Distributive law1.x + x = xB.DeMorgans law2.x(y + z) = xy + xzC.Idempotent law3.(x) = xD.Involution law4.(x + y) = xy

....
MCQ->Match the following: List I List II A.Ampere's Law1.B.Faraday's Law2.C.Gauss's Law3.D.Free Space4.

....
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 examples below expresses the distributive law of Boolean algebra?....
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