晶体管能够放大的外部条件是( )。 A .发射结正偏,集电结正偏 B .发射结正偏,集电结反偏 C .发射结反偏,集电结正偏 D .发射结反偏,集电结反偏
手机使用
分享
复制链接
新浪微博
分享QQ
微信扫一扫
微信内点击右上角“…”即可分享
反馈
参考答案:
举一反三
【单选题】有如下程序: #include<iostream> using namespace std classA { public: A(){cout<<'A'} } class B{public:B(){cout<<'B'}} class C:public A { B b public: C(){cout<<'C'} } int main(){C objreturn 0} 执行后的输出结果是( )
【单选题】Given the following code: 1)class Person { 2) public void printValue(int i, int j) {/*…*/ } 3) public void printValue(int i) {/*…*/ 4) } 5) public class Teacher extends Person { 6) public void pri...