I couldn't __________ his temper.A、 put up inB、 put up withC、put up overD、put up on

题目

I couldn't __________ his temper.

A、 put up in

B、 put up with

C、put up over

D、put up on

如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

I have to go now. I have to pick _____my son from school.

A.in

B.with

C.up


参考答案:C

第2题:

You can stay here tonight.We can ( )you ______in the spare room.

A.put...up

B.put...away

C.put...down

D.put...off


参考答案:A

第3题:

( 34 )如下函数的作用是以双倍行距输出文件:

void double_space(ifstream&f,ofstream&t){

char c;

whilc(——; ){

——;

if(c == '\n')t.put(c);

}

}

画线处缺失的部分是

A ) f.get(c) 与 t.put(c)

B ) f.put(c) 与 t.get(c)

C ) t.get(c) 与 f.put(c)

D ) t.put(c) 与 f.get(c)


正确答案:A

第4题:

YouwanttouseteCoherenceJavaAPIstodirectlycachedPOJOs.Considerthissnippetofcode:NamedCachecache-CacheFactory.getCache("mycache");cache.put(newInteger(I)f"hello");cache.put(T,"hi");cache.put(newLong(II),"hey");Thiscodeinsertsthreeobjectsintothecache.Why?()

A.hashCode()andequals()methodforeachobjecttypeisdifferentsoadifferentkeyisused

B.eachobjectvaluestringisdifferentsoadifferentvalueisinsertedoneachput

C.equals()andcompare()methodisdifferentforeachput

D.POFneedtobeimplementedforthistoworkproperly


参考答案:A

第5题:

Close your books and( )them__________.

A.put...off

B.put...on

C.put ...down

D.put...away


参考答案:D

第6题:

Then she cheered_________ a lot when they got the taxi.

A. up...over

B. of...into

C. of...over

D. up...into


参考答案D

第7题:

Mrs.Browers told her children to ( )their toys __________and go to bed.

A.put...away

B.put...up

C.put...down

D.put...on


参考答案:A

第8题:

如下函数的作用是以双倍行距输出文件: void double_space(ifstream& f, ofstream& t){ char c; while (______) { ______; if (c == '\n')t.put(c); } }画线处缺失的部分是

A.f.get(c)与t.put(c)

B.f.put(c)与t.get(c)

C.t.get(c)与f.put(c)

D.t.put(c)与f.get(c)


正确答案:A
解析:本题考查的知识点是:文件流。get()函数的作用是读入一个字符,所以调用它的应该是输入文件流ifstream对象f;put()函数的作用是输出一个字符,所以调用它的应该是输出文件流ofstream对象t。故选项B和C可以排除。读入和输出的动作应该是有顺序的,首先读入然后才能输出。所以前一空应该填f.get(c),后一空填 t.put(c)。故本题应该选择A。

第9题:

You needn't go back to London tonight.We can( )you______for the night.

A.put...away

B.put ...up

C.put...off

D.put...down


参考答案:B

第10题:

如下函数的作用是以双倍行距输出文件: void double_space(ifstream &f,ofstream &t){ char c; while(______){ ______; if(c=='\n')t.put(c); } } 画线处缺失的部分是

A.f.get(c)与t.put(c)

B.f.put(c)与t.get(c)

C.t.get(c)与f.put(c)

D.t.put(c)与f.get(c)


正确答案:A