检验检疫机构对进口食品按食品( )进行分类管理。
A.质量等级
B.安全等级
C.包装等级
D.危险性等级
参考答案:D
解析: 检验检疫机构对进口食品按食品危险性等级进行分类管理。
我国共有五十六个民族,我国五十六个民族的总称叫 [ ]
A、中国少数民族
B、中国民族
C、中国汉族
D、中 * *
有如下程序: #include <iostream> using namespace std; class test private: int a; public:test ( ) cout << "constructor" << endl; test(int a) cout<<a<<endl; test(const test &_test) a =_test. a; cout << "copy constructor" << endl; ~ test( ) cout << "destructor" << endl; ; int main( ) test A(3);return 0; 执行这个程序的输出结果是( )。
A.3B.constructor destructorC.copy constructor destructorD.3 destructor