63.The company has appointed more than one hundred agents in various important cities in over 50 countriesthroughout the world.
A.该公司已与100多家海外经销商合作,将产品推销到50多个国家。
B.在世界50多个国家的主要城市中有100多家企业承接该公司业务。
C.该公司在全球50多个国家的许多重要城市指定了100多家代理商。
查看答案
64.To confirm the reservation,please visit our office during business hours with a deposit of 75% of the total tourfare per person.
A.要想确保能够如期旅行,请在工作时间来我办公室并交足旅行全款的75%。
B.请在营业时间来办公室确认预订,并支付每人旅行费用总额的75%作为押金。
C.为了证实你已经预定了座位,请向办公人员出示车票及所交75%的押金收据。
下列定义数组正确的是 。
A. int a[ ]={1,2,3,4,5};
B. int b[2]={2,5,3};
C. int a(10);
D. int 4e[4];
若有以下定义:int a[5]={ 5, 4, 3, 2, 1 } ;char b= 'a', c, d, e;则下面表达式中值为2的是 。
A. a[3]
B. a[d–b]
C. a[4]
D. a[c-b]
下面把字符串str2连接到字符串str1后的是 。
A. strcat(str1,str2) ;
B. strcat(str2,str1);
C. strcpy(str1,str2) ;
D. strcmp(str1,str2);