- I thought that if I could get your support first, it might make getting approval easier. - _________ .A We will need another four thousand dollars to cover the cost ;B Well, you've got my support on this ;C You only need a budget increase for the first

题目
- I thought that if I could get your support first, it might make getting approval easier. - _________ .

A We will need another four thousand dollars to cover the cost ;

B Well, you've got my support on this ;

C You only need a budget increase for the first order


相似考题
参考答案和解析
参考答案:B
更多“- I thought that if I could get your support first, it might make getting approval easier. - _________ . ”相关问题
  • 第1题:

    I() packing in wooden cases.

    A、think

    B、prefer

    C、get


    参考答案:B

  • 第2题:

    执行下列程序,显示的结果是______。

    first="china"

    second=""

    a=LEN(first)

    i=a

    DO WHILE i>=1

    second=second+SUBSTR(first,i,1)

    i=i-1

    ENDDO

    ?second


    正确答案:anihc
    anihc 解析:变量a使用LEN函数取得字符串变量first的长度,该变量包含5个字母,所以它的长度为5,即a=5,然后将a的值赋给i,那么i也等于5。使用一个DO WHILE循环语句来操作,判断条件是变量i是否大于等于0,如果小于0,则退出循环,否则执行循环体。此时SUBSTR(first,5,1)的值为a,(从“china”字符串的第5位开始取一位字符);执行i=i-1后,i=4,重复此循环体的操作,变量second的值依次为a、an、ani、anih,anihc,最后i0,退出循环体。

  • 第3题:

    下面的代码用于输出字符数组ch中每个字符出现的次数,应该填入的代码是()public static void main(String[] args) { char[] ch = { 'a', 'c', 'a', 'b', 'c', 'b' }; HashMap map = new HashMap(); for (int i = 0; i < ch.length; i++) { < 填入代码 > } System.out.println(map); }

    A.if (map.contains(ch[i])) { map.put(ch[i], map.get(ch[i]) + 1); } else { map.put(ch[i], 1); }

    B.if (map.contains(ch[i])) { map.put(ch[i], (Integer) map.get(ch[i]) + 1); } else { map.put(ch[i], 1); }

    C.if (map.containsKey(ch[i])) { map.put(ch[i], (int) map.get(ch[i]) + 1); } else { map.put(ch[i], 1); }

    D.if (map.containsKey(ch[i])) { map.put(ch[i], (Integer) map.get(ch[i]) + 1); } else { map.put(ch[i], 1); }


    if (map.containsKey(ch[i])) { map.put(ch[i], (Integer)map.get(ch[i]) + 1); } else { map.put(ch[i], 1); }

  • 第4题:

    It was raining outside, I ( ) one umbrella and walked out.

    A.picked up

    B.take up

    C.have

    D.make


    参考答案: A

  • 第5题:

    I__________have been there,but I__________not find the time.

    A.should;would
    B.should;could
    C.might;could
    D.could;could

    答案:B
    解析:
    考查情态动词的用法。句意为:“我本应该去那里,但我没时间。”should have done表示“过去本应做的事而实际上并没有做”,常含有责备、遗憾的语气。

  • 第6题:

    3、目的状语从句中常含有can, could, may, might, should等情态动词。


    正确