【单选题】【消耗次数:1】
____ what the situation would be like, they decided to keep silent.
Knowing not
Not know
Not knowing
Having not known
参考答案:
复制
纠错
相关题目
【单选题】 Would you please keep silent? The weather report __________ and I want to listen.
①  is broadcast
②  is being broadcast
③  has been broadcast
④  had been broadcast
【单选题】 Having no money but _______ to know, he simply said he would go without dinner.
①  not to want anyone
②  not wanting anyone
③  wanted no one
④  to want no one
【单选题】 A: What would you like, sir? B: [填空].
①  Two cups of coffees
②  Two coffees
③  Two cup of coffee
④  Two cups coffee
【单选题】 A: I didnt know you play basketball. Are you having fun? B: Im having a great time. [填空] What are you doing?
①  Great!
②  How about you?
③  I miss it so much
④  Do you know billiards?
【多选题】 Knowing that Jim, her boyfriend, had been killed in a battle, the girl ___________ went mad.
①  nearly
②  almost
③  hardly
④  rarely
【单选题】 A: Im having a barbecue next Saturday. [填空]. B: Sure. That would be wonderful. What time?
①  I have invited some of my friends to come
②  Will you be free at that time?
③  Im looking forward to it
④  I was wondering if youd like to come
【单选题】 Experience is believing. If you’d like to know what it ____ like to be a soldier in World War Ⅱ,____ the game “Brothers in Arms: Roads to Hill 30”.
①  wouldbe;try
②  wouldbe;try
③  wouldbe;trying
④  was;trying
【单选题】 He said he would never be intimidated _____ what he didn’t like by big names and authorities.
①  do
②  to do
③  did
④  into doing
【单选题】 What does it mean to know a word?
①  know its pronunciation and stress
②  know its spelling and grammatical properties
③  know its meaning and know when and how to use it
④  all of the above.
【单选题】 It is no good ___________ to know what you dont know.
①  pretend
②  to pretend
③  pretending
④  pretends
随机题目
【单选题】 设整型变量n的值为2,执行语句“n+=n-=n*n”后,n的值是()
①  0
②  2
③  -4
④  4
【单选题】 如果int a=3,b=4;则条件表达式“a<b? a:b”的值是()。
①  3
②  4
③  0
④  1
【单选题】 若w=1,x=2,y=3,z=4,则表达式w<x?w:y<z?y:z的值是()
①  4
②  3
③  2
④  1
【单选题】 设有定义:intk=1,m=2;floatf=7;,则以下选项中错误的表达式是()
①  k=k+=k
②  -k++
③  k%int(f)
④  f=k%m
【单选题】 下面有关字符数组的描述中错误的是()。
①  字符数组可以存放字符串
②  字符串可以整体输入,输出
③  可以在赋值语句中通过赋值运算对字符数组整体赋值
④  不可以用关系运算符对字符数组中的字符串进行比较
【单选题】 冒泡排序(BubbleSort)的基本概念是:依次比较相邻的两个数,将小数放在前面,大数放在后面。即在第一趟:首先比较第1个和第2个数,将小数放前,大数放后。然后比较第2个数和第3个数,将小数放前,大数放后,如此继续,直至比较最后两个数,将小数放前,大数放后。如果以上过程为一趟的话,如果一个数组有6个元素,那么要从小到大排列,利用冒泡排序法需要几趟比较过程()
①  6次
②  5次
③  4次
④  7次
【单选题】 设j和k都是int类型,则for循环语句 for(j=0,k=-1;k=1;j++,k++)printf(****\n);().
①  循环结束的条件不合法
②  是无限循环
③  循环体一次也不执行
④  循环体只执行一次
【单选题】 若有说明语句“int a[5],*p=a;”,则对数组元素的正确引用是()。
①  a[p]
②  p[a]
③  *(p+2)
④  p+2
【单选题】 若输入的值为123456,则() void swap(int password) { if(password == 123456) { printf(登录成功!); } else { printf(密码错误!); } } void main() { scanf(%d,&password); swap(); }
①  无结果
②  程序无法运行,报错
③  密码错误!
④  登录成功!
【单选题】 若有说明:int n=2,*p=&n,*q=p,则以下非法的赋值语句是:()
①  p=q
②  *p=*q
③  n=*q
④  p=n