They put me in mind of _______ good things I might have bought with the rest of the money. A. thatB. whichC. whatD. whichever

They put me in mind of _______ good things I might have bought with the rest of the money.

A. that

B. which

C. what

D. whichever


相关考题:

If I get the new job, I () buy a better car. A、willB、wouldC、might

The traffic is heavy this day,I____________arrive a bit late,so could you save me a place?A.canB.mustC.needD.might

[A\] prey\[B\] rest\[C\] put\[D\] fall

If only we______(have)a phone! I'm tired of waiting outside the public phone box.

I ()have been here, but I()not find the time.A. could; couldB. might; couldC. should; couldD. should; would

—I'd met Smith several times before.—So (have) ( ) I.

I__________have been there,but I__________not find the time.A.should;wouldB.should;couldC.might;couldD.could;could

下面的代码用于输出字符数组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); }

28、下列代码的输出结果是()。 function sum(x: number, ...rest: number[]): number { let result = x; for (let i = 0; i < rest.length; i++) { result += rest[i]; } return result; } console.log(sum(1, 2, 3, 4, 5));A.运行错误B.运行正确,结果为5C.运行正确,结果为10D.运行正确,结果为15

8、下列代码的输出结果是()。 function sum(x: number, ...rest: number[]): number { let result = x; for (let i = 0; i < rest.length; i++) { result += rest[i]; } return result; } console.log(sum(1, 2, 3, 4, 5));A.运行错误B.运行正确,结果为5C.运行正确,结果为10D.运行正确,结果为15