1. You find that there is an input signal on the base of Q1 and Q2. However, there is no output signal. You then measure the dc voltages on Q2 and find them to be all 0 V. The possible trouble might be





Ask Your Doubts Here

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

Comments

Show Similar Question And Answers
QA->A man is facing East, then the turns left and goes 10 m, then turns right and goes 5 m, then goes 5 m to the South and from there 5 m to West. In which direction is he, from his original place ?....
QA->Correct sentences among the following are: ) The tea is too hot that I cannot drink (2) Work hard, lest you should miss the chance (3) Unless you study well, you will fail (4) Unless you study well, you will pass....
QA->You go North. Turn right. Then again and then go to left. In which direction are you now?....
QA->“It is possible to fail in many ways; while to succeed is possible only in one way”?....
QA->The piece of hardware that converts your computer’s digital signal to an analog signal that can travel over telephone lines is called a–....
MCQ->You find that there is an input signal on the base of Q1 and Q2. However, there is no output signal. You then measure the dc voltages on Q2 and find them to be all 0 V. The possible trouble might be ....
MCQ->What will be the output of the following program? #include<iostream.h> class Base { int x, y; public: Base() { x = y = 0; } Base(int xx) { x = xx; } Base(int p, int q = 10) { x = p + q; y = q; } void Display(void) { cout<< x << " " << y << endl; } }objDefault(1, 1); class Derived: public Base { Base obj; public: Derived(int xx, int yy): Base(xx, xx + 1) { } Derived(Base objB = objDefault) { } }; int main() { Derived objD(5, 3); Derived ptrD = new Derived(objD); ptrD->Display(); delete ptrD; return 0; }....
MCQ->You find that there is no output signal. You measure the dc voltage of Q1 emitter and find it equal to 0 V. The trouble might be ....
MCQ->Read the following passage carefully and choose the most appropriate answer to the question out of the four alternatives. To avoid the various foolish opinions to which mankind are prone, no superhuman brain is required. A few simple rules will keep you free, not from all errors, but from silly errors. If the matter is one that can be settled by observation, make the observation yourself. Aristotle could have avoided the mistake of thinking that women have fewer teeth than men, by the simple device of asking Mrs. Aristotle to keep her mouth open while he counted. Thinking that you know when in fact you do not is a bad mistake, to which we are all prone. I believe myself that hedgehogs eat black beetles, because I have been told that they do but if I were writing a book on the habits of hedgehogs, I should not commit myself until I had seen one enjoying this diet. Aristotle, however, was less cautious. Ancient and medieval writers knew all about unicorns and salamanders not one of them thought it necessary to avoid dogmatic statements about them because he had never seen one of them. The attitude of the author is....
MCQ->What will be the output of the following program? #include<iostream.h> class Base { public: int S, A, M; Base(int x, int y) { S = y - y; A = x + x; M = x x; } Base(int, int y = 'A', int z = 'B') { S = y; A = y + 1 - 1; M = z - 1; } void Display(void) { cout<< S << " " << A << " " << M << endl; } }; class Derived : public Base { int x, y, z; public: Derived(int xx = 65, int yy = 66, int zz = 67): Base(x) { x = xx; y = yy; z = zz; } void Display(int n) { if(n) Base::Display(); else cout<< x << " " << y << " " << z << endl; } }; int main() { Derived objDev; objDev.Display(-1); 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 | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution