1. A full-adder has a Cin=.What are the SUM and the Cout When A=1 and B=1?





Write Comment

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

Comments

Tags
Show Similar Question And Answers
QA->The sum and product of two numbers are 13 and 40 respectively. The sum of their reciprocals is :....
QA->What is the sum of the product and quotient of 8 and 8?....
QA->……is defined as the sum total of all the goods and services produced in a country in a particular period of time?....
QA->Idiom of Sum and substance....
QA->Find two numbers whose sum is 27 and product is 182....
MCQ->What will be the output of the following program? #include<iostream.h> class Number { int Num; public: Number(int x = 0) { Num = x; } void Display(void) { cout<< Num; } void Modify(); }; void Number::Modify() { int Dec; Dec = Num % 13; Num = Num / 13; if(Num > 0 ) Modify() ; if(Dec == 10) cout<< "A" ; else if(Dec == 11) cout<< "B" ; else if(Dec == 12) cout<< "C" ; else if(Dec == 13) cout<< "D" ; else cout<< Dec ; } int main() { Number objNum(130); objNum.Modify(); return 0; }....
MCQ->A full-adder has a Cin=.What are the SUM and the Cout When A=1 and B=1?....
MCQ->A full-adder has a Cin = 0. What are the sum () and the carry (Cout) when A = 1 and B = 1?....
MCQ->Which of the following statement is correct about the program given below? #include<iostream.h> class IndiaBix { int x; public: IndiaBix(short ss) { cout<< "Short" << endl; } IndiaBix(int xx) { cout<< "Int" << endl; } IndiaBix(char ch) { cout<< "Char" << endl; } ~IndiaBix() { cout<< "Final"; } }; int main() { IndiaBix ptr = new IndiaBix('B'); return 0; }....
MCQ->What will be the output of the following program? #include<iostream.h> class BixBase { public: BixBase() { cout<< "Base OK. "; } ~BixBase() { cout<< "Base DEL. "; } }; class BixDerived: public BixBase { public: BixDerived() { cout<< "Derived OK. "; } ~BixDerived() { cout<< "Derived DEL. "; } }; int main() { BixBase basePtr = new BixDerived(); delete basePtr; return 0; }....
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