【单选题】【消耗次数:1】
There can be no ( ) understanding without communication between people.
mutually
mutuality
mutual
mutualism
参考答案:
复制
纠错
相关题目
【单选题】 33.Modern science and technology has _____ communication between people far apart.
①  madeconvenient
②  madeitconvenient
③  madeitconvenientfor
④  madeitconvenientto
【单选题】 Communication between a young couple is a(n) _____business.
①  sharp
②  dreadful
③  intense
④  delicate
【单选题】 The exchange of goodwill mission greatly ______ a better understanding between the two countries.
①  carries out
②  brings around
③  breaks out
④  contributes to
【简答题】 Translate the following sentence into ChineseAt the meeting, they discussed how to keep the lines of communication open between teachers and students.
【单选题】 Earthquakes ( ) in the region about once a week, without the people feeling them.
①  struck
②  attacked
③  broke
④  occurred
【判断题】 Some people without experience in traveling may feel disappointment during the traveling.
①  正确
②  错误
【单选题】 Young children often can’t __________ between TV programs and commercials.
①  separate
②  distinguish
③  compare
④  contrast
【单选题】 Between 1990 and 2000, the population of the United States increased____________ 33 million people.
①  in
②  at
③  on
④  by
【单选题】 Problems can ______ when people have no knowledge of law.
①  rise
②  raise
③  arise
④  rose
【单选题】 In china, people can pay their hotel bills in cash, by credit cards or with( )
①  check
②  money
③  travel checks
④  traveler’s checks
随机题目
【多选题】 当定义一个结构体变量时,系统为它分配内存空间,以下说法不正确的是()
①  结构中一个成员所需的内存容量
②  结构中第一个成员所需的内存容量
③  结构体中占内存容量最大者所需的容量
④  结构中各成员所需内存容量之和
【单选题】 设有 int x=11; 则表达式 (x++ * 1/3) 的值是().
①  3
②  4
③  11
④  12
【单选题】 C语言中的简单数据类型有()
①  整型、实型、逻辑型
②  整型、实型、字符型
③  整型、字符型、逻辑型
④  整型、实型、字符型、逻辑型
【单选题】 已知inta[4][4]={{1,2},{3},{4},{1,2,3}};问a[2][0]该元素的值是()
①  2
②  3
③  4
④  1
【单选题】 用C语言编写的源程序经过编译后,若没有产生编译错误,则系统将()。
①  生成可执行文件
②  生成目标文件
③  输出运行结果
④  自动保存源文件
【单选题】 排序是计算机内经常进行的一种操作,其目的是()
①  将一组无序的记录序列调整为有序的记录序列。
②  将一组有序的记录序列调整为无序的记录序列。
③  将一组交错的记录序列调整为有序的记录序列。
④  将一组交错的记录序列调整为无序的记录序列。
【单选题】 定义字符数组charclassname[100];接收从键盘输入的班级名称,下面语句正确的是()
①  scanf(%c,classname)
②  scanf(%s,classname);
③  Scanf(%c,classname);
④  Scanf(%s,classname);
【单选题】 若变量已正确说明为int类型,要给a,b,c输入数据,以下语句正确的是()
①  read(a,b,c);
②  scanf(%d%d%d,a,b,c);
③  scanf(%D%D%D,a,%b,%c);
④  scanf(%d%d%d,a,b,c);
【单选题】 求多个数的和值,一般我们设置和值变量的初始值是()。
①  0
②  1
③  2
④  3
【单选题】 下面是对字符数组str 的初始化语句,其中不正确的是()。
①  char str[5]={abcd};
②  char str[5]={’a’,’b’,’c’,’d’};
③  char str[]=abcd;
④  char str[5];str=abcdef;