教学反思能力
参考答案:
为了实现教学目标对已经发生或正在发生的教学活动以及支持教学活动的概念、假设,进行积极、持续、周密、深入、自我调节性的思考的能力。
关于x的方程(a-5)x2-4x-1=0有实数根,则a满足 ( )
A.a≥1
B.a>1且a≠5
C.a≥1且a≠5
D.a≠5
下面程序的结果是( )。 #include<iostream.h> class test{ private: int num; public: test( ); int getint( ) {return num;} ~test( );}; test::test( ) { num=0;} test::~test( ) { cout<<"Destructor is active"<<endl;} void main( ) { test x[3]; cout<<"Exiting main"<<endl;}
A.信息隐藏
B.数据封装
C.定义新类
D.数据抽象