I can’t put __ what he said. A. on withB. up forC. up with

I can’t put __ what he said.

A. on with

B. up for

C. up with


相关考题:

Don’t write in the third person but don’t () “I”. A.useB.overuseC.writeD.put

Rose: Hi, Lisa. What's wrong with you?______.Lisa: No, I don't. I've got the flu.

一What's happened to Tom?一________ to hospital.A. He's been takenB. He'll be takenC. He'll take

He _________ have lied to his boss. A.shouldn'tB.mustn'tC.don't have toD.can't

--Your phone number again? I _______ quite catch it. A.don'tB.can'tC.couldn'tD.didn't

He()to Shanghai for I saw here a minute ago.A. can't goB. can't have goneC. didn't go

He______________be hungry一he's just had lunch.A. can'tB. mustC. ought toD. might

He ______ to Shanghai for I saw him here a minute ago. A. can’t goB. can’t have goneC. didn’t go

YouwanttouseteCoherenceJavaAPIstodirectlycachedPOJOs.Considerthissnippetofcode:NamedCachecache-CacheFactory.getCache(mycache);cache.put(newInteger(I)fhello);cache.put(T,hi);cache.put(newLong(II),hey);Thiscodeinsertsthreeobjectsintothecache.Why?()A.hashCode()andequals()methodforeachobjecttypeisdifferentsoadifferentkeyisusedB.eachobjectvaluestringisdifferentsoadifferentvalueisinsertedoneachputC.equals()andcompare()methodisdifferentforeachputD.POFneedtobeimplementedforthistoworkproperly

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