As the goods are ready for shipment, we ()your L/C to be opened immediately.A、hopeB、anticipateC、awaitD、expect

题目

As the goods are ready for shipment, we ()your L/C to be opened immediately.

A、hope

B、anticipate

C、await

D、expect


相似考题
更多“As the goods are ready for shipment, we ()your L/C to be opened immediately.A、hopeB、a ”相关问题
  • 第1题:

    “Was the park ________ yesterday?” “Yes, It ________ at nine in the morning”

    A.opened…open

    B.open…was open

    C.open…opened

    D.opened…opened


    参考答案:C

  • 第2题:

    以下不正确的名号名称是

    A.ready'

    B.ready_l

    C.ready(L)

    D./ready


    C

  • 第3题:

    1、以下不正确的名号名称是

    A.ready'

    B.ready_l

    C.ready(L)

    D./ready


    name REGEXP '[a-zA-Z]{6,20}'

  • 第4题:

    Her mother asked her to keep the windows___________and the door

    A.opened ; closed
    B.open ; closed
    C.open ; close
    D.opened ; close

    答案:B
    解析:
    “keep+宾语+宾语补足语”意为“保持某种状态”,open本身就是形容词,开着的;closed意为“关着的”。两个形容词在此处作宾补,表示状态,因此本题答案为B。

  • 第5题:

    【单选题】下面程序的输出是。 main() {enum team {my,your=4,his,her=his+10}; printf("%d%d%d%dn",my,your,his,her);}

    A.0 1 2 3

    B.0 4 0 10

    C.0 4 5 15

    D.l 4 5 15


    DDBBCC C语言对枚举的定义规定:在枚举中声明的各个枚举元素,如果没有明确指出某个枚举元素的值,它的上一个元素存在并有明确值的情况下,这个枚举元素的值为其上一个元素的值+1。在本题中,没有明确说明枚举元素em3的值,则em3=em2+1=1+1=2,进而可知,在printf()打印函数中,要打印的数组元素是aa[3]、aa[1]、aa[2],因此最后的打印结果应当为“DDBBCC”。