【多选题】【消耗次数:1】
Department stores usually___________ customers with various kinds of goods.
match
service
supply
provide
参考答案:
复制
纠错
相关题目
【判断题】 阅读课文II. Department stores判断下列句子表述内容的正误:Without your receipt you can return any goods at the Customer Service Department.
①  正确
②  错误
【判断题】 阅读课文II. Department stores 判断下列句子表述内容的正误:Customers can enjoy other services besides buying goods in a store.
①  正确
②  错误
【多选题】 ___________ , in order to make more profit, storekeepers try to supply not only enough goods but also different services for their customers.
①  In short
②  In a word
③  In sum
④  All in all
【单选题】 Department stores in London are very large. They are called department stores because they have many_________ departments.
①  delicious
②  different
③  domestic
④  delighted
【判断题】 The code (准则)of service sector is to serve the customers.
①  正确
②  错误
【单选题】 Women especially enjoy_________ in department stores at their leisure.
①  wondering
②  weeping
③  wandering
④  watching
【多选题】 People may buy___________ everything they want in the department stores.
①  hardly
②  rarely
③  nearly
④  almost
【单选题】 Following are comments about the behavior that people in Korea usually expect in various social ____.
①  occasions
②  cases
③  situations
④  circumstances
【单选题】 Following are comments about the behavior that people in Korea usually expect in various social _____.
①  occasions
②  cases
③  situations
④  circumstances
【单选题】 Prices of goods ( ) online can be lower than those in off-line stores.
①  buying
②  buy
③  bought
④  that buys
随机题目
【单选题】 在一个C程序中,(  )。
①  main函数必须出现在所有函数之前
②  main函数可以在任何地方出现
③  main函数必须出现在所有函数之后
④  main函数必须出现在固定位置
【单选题】 若在C语言中未说明函数的类型,则系统默认该函数的数据类型是(  )。
①  float
②  long
③  int
④  double
【单选题】 定义一个void型函数意味着调用该函数时,函数(  )。
①  通过return返回一个用户所希望的函数值
②  返回一个系统默认值
③  没有返回值
④  返回一个不确定的值
【单选题】 一个完整的C源程序是(  )。
①  要由一个主函数或一个以上的非主函数构成
②  由一个且仅由一个主函数和零个以上的非主函数构成
③  要由一个主函数和一个以上的非主函数构成
④  由一个且只有一个主函数或多个非主函数构成
【单选题】 如果一个函数位于C程序中定义的第一个函数,在该函数体内说明语句后的复合语句中定义了一个变量,则该变量(  )。
①  为全局变量,在本程序文件范围内有效
②  为局部变量,只在该函数内有效
③  为局部变量,只在该复合语句中有效
④  定义无效,为非法变量
【单选题】 若函数调用时参数为基本数据类型的变量,以下叙述正确的是(  )。
①  实参与其对应的形参共占存储单元
②  只有当实参与其对应的形参同名时才共占存储单元
③  实参与对应的形参分别占用不同的存储单元
④  实参将数据传递给形参后,立即释放原先占用的存储单元
【单选题】 以下关于函数的叙述中正确的是(  )。
①  C语言程序将从源程序中第一个函数开始执行
②  可以在程序中由用户指定任意一个函数作为主函数,程序将从此开始执行
③  C语言规定必须用main作为主函数名,程序将从此开始执行,在此结束
④  main可作为用户标识符,用以定义任意一个函数
【单选题】 以下关于函数的叙述中不正确的是(  )。
①  C程序是函数的集合,包括标准库函数和用户自定义函数
②  在C语言程序中,被调用的函数必须在main函数中定义
③  在C语言程序中,函数的定义不能嵌套
④  在C语言程序中,函数的调用可以嵌套
【单选题】 若主调用函数类型为double,被调用函数定义中没有进行函数类型说明,而return语句中的表达式类型为float型,则被调函数返回值的类型是(  )。
①  int 型
②  float 型
③  double 型
④  由系统当时的情况而定
【单选题】 有如下程序int func(int a,int b){ return(a+b); }main( ){ int x=2,y=5,z=8,r;r=func(func(x,y),z);printf(%d\n }该程序的输出结果是(  )。
①  12
②  13
③  14
④  15