范蠡的哪个儿子为西施所生?()
A.大儿子
B.二儿子
C.三儿子
D.四儿子
参考答案:B
问卷中各个提问与实际要研究问题中的概念符合程度称为
A.真实性
B.可靠性
C.信度
D.效度
E.效益
下面程序的结果是( )。 #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.数据抽象