【单选题】【消耗次数:1】
The man was informed ____ the arrival of the new products. ?
to ?
on ?
of ?
with?
参考答案:
复制
纠错
相关题目
【多选题】 We need____________________ products.
①  a certain amount of
②  a great deal of
③  a great number of
④  a large number of
【单选题】 The company is trying every _____to improve the quality of products.
①  meaning
②  means
③  mean
④  meanings
【单选题】 Our customers are complaining of the ______ quality of our products.
①  gracious
②  wonderful
③  superior
④  inferior
【单选题】 Japan _____________ cars, television sets, computers and other products.
①  pollutes
②  publishes
③  punishes
④  produces
【单选题】 Computer software _____ some 70 percent of our range of products.
①  picks up
②  focuses on
③  accounts for
④  is based on
【单选题】 Being the __________ sponsor of this competition, he has got great opportunities for advertising his products.
①  principal
②  chief
③  main
④  primary
【单选题】 Advertising media like direct mail, radio, television and newspapers ____ to increase the sales of industrial products.
①  have been used
②  will be used
③  is being used
④  has been used
【单选题】 Advertising media like direct mail, radio, television and newspapers _____to increase the sales of industrial products.
①  have been used
②  will be used
③  is being used
④  has been used
【单选题】 Many manufacturers were accused of concentrating too heavily on cost reduction, often at the ____ of the quality of their products.
①  expense
②  exposure
③  expansion
④  expectation
【单选题】 We ______ your name and address _____ Chinese Chamber of Commerce, through whom we learned that you are the main exporter of stainless steel products.
①  owe, from
②  owe, to
③  owe, with
④  owe, out of
随机题目
【简答题】 字符型数据一般占[填空1]个字节。
【简答题】 下面程序的运行时,输入CLanguage↙,输出是[填空1]。#includestdio.hvoid main( ){ char str[30];scanf(%s,str); printf(%s,str);}
【简答题】 以下程序输入20个数,将其逆序输出。#includestdio.hvoid main() { int a[20],i; for(i=0;ii++) scanf(%d,[填空1]); for(i=19;ii--) printf(%d ,[填空2]); }
【简答题】 字符型数据是以字符的[填空1]代码存储在存储单元中的。
【简答题】 下面程序段的运行结果是[填空1]。char c[5]={a,b,\0,c,\0};printf(%s,c);
【判断题】 二维数组只是逻辑上的概念,在计算机内存中是连续存放的,不是二维的,是线性的。
①  正确
②  错误
【判断题】 C语言中没有字符串类型,也没有字符串变量,字符串是存放在字符型数组中的。
①  正确
②  错误
【单选题】 若有说明:int a[10];,则对a数组元素的正确引用是(  )。
①  a[10]
②  a[3.5]
③  a(5)
④  a[10-10]
【单选题】 以下不能对二维数组a 进行正确初始化的语句是(  )。
①  int a[2][3]={0};
②  int a[][3]={{1,2},{0}};
③  int a[2][3]={{1,2},{3,4},{5,6}}
④  int a[][3]={1,2,3,4,5,6};
【单选题】 以下能对二维数组a 进行正确初始化的语句是(  )。
①  int a[2][]={{1,0,1},{5,2,3}};
②  int a[][3]={{1,2,3},{4,5,6}};
③  int a[2][4]={{1,2,3},{4,5},{6}};
④  int a[][3]={{1,0,1},{},{1,1}};