与教育水平较低的雇员相比,接受过正规教育较多以及在职培训较多的雇员()。
A、能获得较低的工资率
B、总收入较低
C、一年中工作的时间较多
D、工作机会较少
参考答案:C
有如下程序: #include<iostream> using namespaee std; int i=1; class Fun public: static int i; int value( ) return i-1; int value( )cons[ return i+1; ; int Fun::i=2; int main( ) int i=3; Fun funl; const Fun fun2; ______: return 0; 若程序的输出结果是: 123 则程序中下画线处遗漏的语句是
A) cout<<funl.value( )<<Fun::i<<fun2.value( ); B) cout<<Fun::i<<funl.value( )<<fun2.value( ); C) cout<<funl.value( )<<fun2.value( )<<Fun::i; D) cout<<fun2.value( )<<Fun::i<<funl.value( );
从字符串S("abcdefs")中返回子串B("cd")的正确表达式是______。
A.Mid(S,3,2)
B.Right(Left(S,4),2)
C.Left(Right(S,5),2)
D.以上都可以