张某2010年1月在提供了5000元保证金后开始到甲公司上班,但是一直到2010年3月,甲公司才与其签订书面的劳动合同。工作期间,甲公司多次安排张某加班,但均未支付加班费。2010年9月甲公司打算解除其与张某的劳动合同,双方就此发生了争议。根据上述资料,回答下列问题: 双方在劳动合同中的下列哪些约定不合法()。
A. 合同期限为两年,试用期为3个月
B. 试用期工资为转正后工资的80%
C. 鉴于张某的工作会接触大量公司的商业秘密,合同终止后3年内,张某不得到甲公司的竞争对手工作,此期间甲公司逐月支付张某补偿金
D. 如果张某不能胜任工作,经过培训或者调整工作岗位,仍不能胜任工作的,甲公司有权在额外支付张某1个月工资后解除劳动合同,而不必提前通知张某
查看答案
Section One Directions: In this section, you will hear ten short statements. Each statement will be spoken only once. After each statement, there will be a pause. During the pause, you must read the four suggested answers marked A, B, C and D, and decide which is the best answer. Then mark the corresponding letter on the ANSWER SHEET with a single line through the center.
A. If the time period of the loan is one year, the simple interest and compound interest are the same.
B. If the time period of the loan is the same, the simple interest and compound interest are the same.
C. When the full principal plus interest is paid together, compound interest and simple interest are of the same dollar amount.
D. When the full principal plus interest is paid together, compound interest and simple interest are not of the same dollar amount.
有如下程序: #include<iostream> using namespace std; class TestClass int k; public: TestClass(int x=1):k(x) ~TestClass Ocout<<k; ; int main() TestClass a[]=TestClass(3),TestClass(3),TestClass(3); TestClass *p=new TestClass[2]; delete []p; return (): 这个程序的输出结果是______。
有如下程序: #include<iostream> using namespace std; class Base public: Base ()cout<<"Base"; ; class Derived:public Base public: Derived()cout<<"Derived"; ; intmain() Derived derived; Base *p; P=& derived; return 0; 执行上面程序的输出是______。
已知递归函数fun的定义如下: int fun(int n) if(n<=1) return 1;//递归结束情况 else return n *fun(n-2);//递归 则函数调用语句fun(5) 的返回值是______。