The reasons for the popularity of Treasury bills are the following except that ______.A.they are the only money market instruments affordable to individual investorsB.they are highly liquidC.they are risk-freeD.they give higher return than other money mar

题目

The reasons for the popularity of Treasury bills are the following except that ______.

A.they are the only money market instruments affordable to individual investors

B.they are highly liquid

C.they are risk-free

D.they give higher return than other money market instruments


相似考题
更多“The reasons for the popularity of Treasury bills are the following except that ______.A.th ”相关问题
  • 第1题:

    Advertising has long been viewed as a method of mass ______ in that a single message can reach a large number of people.

    A.promotion
    B.permission
    C.fantasy
    D.popularity

    答案:A
    解析:
    本题考察词义辨析。题目意为“长久以来,广告一直被视为一种大众传播推广的手段,一条简单的信息能够借此传达给数量较大的受众。”A选项意为“提升,推广”,B选项意为“允许,许可”,C选项意为“幻想,幻觉”,D选项意为“普及,流行”。根据题意,广告是一种推广手段。
      

  • 第2题:

    我们用try-except来处理异常,except语句后面通常会写上________________,当except语句后面什么都不写时,表示可以处理其他所有的异常。


    异常的类型;异常类型

  • 第3题:

    Python处理异常的方式包括:

    A.try……except

    B.try……except……

    C.try……except……except……else

    D.try……except……else……finally


    try……except;try……except……;try……except……except……else;try……except……else……finally

  • 第4题:

    使用try……except……结构时,except后可不必指出异常类型


  • 第5题:

    在完整的异常语句中,子句出现的顺序正确的是_______。

    A.try—>except—>else—>finally

    B.try—>else—>except—>finally

    C.try—>except—>finally—>else

    D.try—>except—>except—>finally


    A

  • 第6题:

    在Python 3中,能使用下列哪个语句处理多个异常?()

    A.except [NameError, FileNotFoundError]

    B.except {NameError, FileNotFoundError}

    C.except (NameError, FileNotFoundError)

    D.except NameError, FileNotFoundError


    except (NameError, FileNotFoundError)