1. In a common-base (C-B) amplifier, the output is 180 degrees out of phase with the input.



Ask Your Doubts Here

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

Comments

Show Similar Question And Answers
QA->In the shortest phase of mitosis the separation of newly formed chromosomes occurs. Which is that phase?....
QA->Most common input device used today is ?....
QA->Which civilization were credited for the invention of the system of dividing a circle into 360 degrees?....
QA->One calorie is the heat required to raise the temperature of 1g of water by how many degrees?....
QA->About 50% of the world population is concentrated between the latitudes of which degrees?....
MCQ->In a common-base (C-B) amplifier, the output is 180 degrees out of phase with the input.....
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->In a phase discriminator fc, is the IF to which primary circuit is tuned. Consider the following statements: The primary and secondary voltages are exactly 90° out of phase when input frequency is fcmore than 90° out of phase when input frequency is higher than fcless than 90° out of phase when input frequency is lower than fc Which of the above statements is correct?....
MCQ->A man is facing north.He turns 45 degrees in the clockwise direction and then another 180 degrees in the same direction and then 270 degrees in the anti clockwise direction.Which direction is he facing now?....
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