网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
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


参考答案

更多 “ They put me in mind of _______ good things I might have bought with the rest of the money. A. thatB. whichC. whatD. 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;would B.should;could C.might;could D.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