【单选题】【消耗次数:1】
A: How much is that rice, please? B: [填空].
Four Kilo
Very much
Four are enough
Four yuan a kilo
参考答案:
复制
纠错
相关题目
【单选题】 A deer has four [填空] , doesnt it?
①  foots
②  feet
③  feets
④  foot
【单选题】 How much [填空] that pants?
①  are
②  is
③  cost
④  costs
【单选题】 How much [填空] is there in the tin?
①  water
②  orange
③  cakes
④  cake
【单选题】 A: Excuse me, how much is the dress? B: Its €100. [填空]
①  Which do you prefer?
②  Oh, no. Thats OK!
③  How do you like it?
④  Would you like to try it on?
【单选题】 Twelve is to three _____ four is to one..
①  in
②  like
③  as
④  what
【多选题】 I want to___________ this letter to the U.S.. How much if the postage, please?
①  mail
②  send
③  keep
④  weigh
【单选题】 He has_______four interesting books.
①  wrote
②  written
③  been writing
【判断题】 A: Thank you very much! B: No thanks.
①  正确
②  错误
【判断题】 A: How is the child? B: He is much better.
①  正确
②  错误
【判断题】 A: How is the child? B: He is much better.
①  正确
②  错误
随机题目
【单选题】 说明语句“staticinti=10;”中,“i=10”的含义是()
①  只说明了一个变量
②  与inti=10在功能上等价
③  将变量i初始化为10
④  将变量i赋值为10
【单选题】 下面关于进制运算规律描述正确的是()。
①  十进制是逢十进一,借一当二
②  二进制是逢二进一,借一当十
③  十进制是逢十进一,借一当十
④  二进制是逢二进一,借一当一
【单选题】 单字符输入函数是()。
①  putchar()
②  getchar()
③  gets()
④  puts()
【单选题】 fwrite函数的一般调用形式是()。
①  fwrite(buffer,count,size,fp)
②  fwrite(fp,size,count,buffer)
③  fwrite(fp,count,size,buffer)
④  fwrite(buffer,size,count,fp)
【单选题】 break语句不能单独使用在下列哪种语句中()。
①  while
②  for
③  if
④  switch
【单选题】 下列程序执行后的输出结果是() void func1(a) { switch(a) { case 1:printf(good); case 2:printf(nice); default:printf(end); } } main( ) { int i=2; func1(i); printf(\n); }
①  nice
②  end
③  good
④  niceend
【单选题】 当代电子计算机能够自动地处理指定的问题是因为:()
①  计算机是电动的
②  有解决该问题的计算机程序
③  事先存储了解决该问题的程序
④  以上都不是
【单选题】 下面关于API的描述错误的是()
①  API是用来控制Windows各个元素的外观和行为的一套预定义的Windows函数
②  创建应用程序,打开窗口、描绘图形都要调用API函数
③  Windows操作系统构建在API函数上
④  早期,windows程序员编写程序只能使用API函数
【单选题】 下面程序的输出结果是()。 #include int num=10; func( ) {int num=4; return ++num; } void main( ) { printf(%d\n, func( ) ) ; }
①  4
②  5
③  10
④  11
【多选题】 关于函数知识下列描述说法不正确的是()
①  函数值是指函数被调用之后,执行函数体中的程序段所取得的并返回给主调函数的值。
②  函数的值通过return语句返回主调函数
③  有返回值函数的定义格式为:返回值类型函数名(参数列表);{函数体}
④  无返回值函数的定义格式为:void函数名(参数列表);{函数体}