Mother ______ us stories when we were young.A. was used to tellB. is used to tellingC. used to tellD. used to telling

题目

Mother ______ us stories when we were young.

A. was used to tell

B. is used to telling

C. used to tell

D. used to telling


相似考题
更多“Mother ______ us stories when we were young. A. was used to tell B. is used to tel ”相关问题
  • 第1题:

    She became ___________ to the new life.

    A.use

    B.uses

    C.using

    D.used


    答案:D

  • 第2题:

    Techniques to employ the energy of the sun are being developed.

    A:convert
    B:store
    C:use
    D:receive

    答案:C
    解析:
    use“使用”; convert“使转变,转换······”。store"贮藏,贮备,存储”。receive“接收”。employ本身也有“使用”的意思,所以C项正确。

  • 第3题:

    Our statistics show that we consume all that we are capable of producing.

    A:waste
    B:buy
    C:use
    D:sell

    答案:C
    解析:
    本句意思:数据表明,我们消耗我们能生产出来的所有东西。consume消耗,消费。use 使用,用;waste浪费;buy购买;sell卖。

  • 第4题:

    某企业职工关系EMP(E_no,E_name,DEPT,E_addr,E_tel)中的属性分别表示职工号、姓名、部门、地址和电话;经费关系FUNDS(E_no,E_limit,E_used)中的属性分别表示职工号、总经费金额和己花费金额。若要查询部门为"开发部"且职工号为"03015"的职工姓名及其经费余额,则相应的SQL语句应为: SELECT(60) FROM(61) WHERE(62)

    A.EMP.E_no,E_limit-E_used

    B.EMP.E_name,E_used-E_limit

    C.EMP.E_no,E_used-E_limit

    D.EMP.E_name,E_limit-E_used


    正确答案:D

  • 第5题:

      A. collected
      B. answered
      C. returned
      D. used


    答案:A
    解析:

  • 第6题:

    某企业职工关系EMP(E_no,E_name,DEPT,E_addr,E_tel)中的属性分别表示职工号、姓名、部门、地址和电话;经费关系FUNDS(E_no,E_limit,E_used)中的属性分别表示职工号、总经费金额和己花费金额。若要查询部门为"开发部"且职工号为"03015"的职工姓名及其经费余额,则相应的SQL语句应为:SELECT(请作答此空)FROM( )WHERE( )

    A.EMP.E_no,E_limit-E_used
    B.EMP.E_name,E_used-E_limit
    C.EMP.E_no,E_used-E_limit
    D.EMP.E_name,E_limit-E_used

    答案:D
    解析:
    本题考查数据库SQL语句的基础知识。查询的结果为职工姓名E_name,和经费余额,经费余额=总经费金额-已花费金额(E_limit-E_used)。