1. The IEEE/ANSI symbol for a decoder has the internal designation bcd/dec. This means the decoder is a:





Ask Your Doubts Here

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

Comments

Show Similar Question And Answers
QA->If + means × , - means † , × means - and † means + then 16 – 4 + 3 × 5 ÷ 2 =....
QA->In a certain code 743 means Mangoes are good; 657 means Eat good food; and 934 means Mangoes are ripe. Which digit means ripe in that language?....
QA->If ‘+’ means ‘×’, ‘__‘ means ‘+’, ‘×’ means ‘÷’ and ‘÷’ means ‘__‘ then find the value of; 6 – 9 + 8 × 3 ÷ 20 = ……. .....
QA->If + means , x means -, means + and - means x. Find 168x6-2+12?....
QA->If P means / , T means +, M means -, and D means x, then what will be the value of the expression 12M12D28P7T15?....
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->The IEEE/ANSI symbol for a decoder has the internal designation bcd/dec. This means the decoder is a:....
MCQ->What will be the output of the following program? #include<iostream.h> class IndiaBix { int Num; public: IndiaBix(int x) { Num = x; } int BixFunction(void); }; int IndiaBix::BixFunction(void) { static int Sum = 0; int Dec; Dec = Num % 10; Num = Num / 10; if((Num / 100)) BixFunction(); Sum = Sum 10 + Dec; return Sum; } int main() { IndiaBix objBix(12345); cout<< objBix.BixFunction(); return 0; }....
MCQ->The IEEE/ANSI notation of an internal underlined diamond denotes:....
MCQ->Assertion (A): In a BCD to 7 segment decoder the number of outputs active at one time is always the same.Reason (R): A decoder can be used to interface BCD input to LED display.

....
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