事业单位

-Do you think it's going to be fine?-Yes,and I expect( ).A.thatB.soC.itD.不填

题目

-Do you think it's going to be fine?

-Yes,and I expect( ).

A.that

B.so

C.it

D.不填

参考答案和解析
正确答案:B
B[解析]so表示替代时,常用来代替上文中出现的内容,尤其是上文内容在下文中以宾语从句形式出现时.that用来指前文中确定的同类事物,但不是同一个事物,如:The hat you bough tis bigger than that I bought.it指代上文所提事物本身,如:I Can't find my hat.I don't know where I put it.这里填入的词替代的是上文中的“it's going to be fine”,在下文中以宾语从句形式出现,故选B.
如果没有搜索结果,请直接 联系老师 获取答案。
相似问题和答案

第1题:

—You've been busy, haven't you? —_______

A.I was busy last week.

B.Yes, I've been working hard on my paper.

C.I will get busy with my English studies.

D.I'd like to get busy like our teachers.


参考答案:B

第2题:

You' ll tell John about that, won’t you ? -Yes, I'll tell him about it as soon as he( ).

A. will wake up

B. wakes up

C. is waking up

D. woke up


正确答案:C

第3题:

- May I help you, madam? -().

A、Sorry, I have no idea

B、Yes, I know what to buy

C、You'd better give me a hand

D、Yes, I'd like 2 kilos of oranges


参考答案:D

第4题:

以下能正确计算10!的程序段是 。

A.do {i=1;s=1;; s=s*i; i++; }while(i<=10);

B.do{i=1;s=0 s=s*i; i++; while(i<=10);

C.i=1;s=1; do{s=s*i; i++; }while(i<=10);

D.i=1;s=0; do{s=s*i; i++; }while(i<=10);


死循环

第5题:

--You're not a freshman,are you?
--__I am a second-year student.

A.Yes,I'm not
B.No,I am
C.No,I'm not
D.Yes,I am

答案:C
解析:
用yes回答,后面就应是肯定句;用no回答,后面就应是否定句。

第6题:

You’d better()to hospital at once.

A. go

B. to

C. going


参考答案:A

第7题:

2.—How _______you?

—I_______ fine, thanks.

A.are;is

B.are; am

C.are;are

D.is,am


正确答案:B
2.B[解析】人称不同对应be动词的形式不同,第一人称1对应am,第二人称you对应are,故选B。

第8题:

- May I help you, madam? - ().

A、Sorry, I have no idea

B、Yes, I'd like 2 kilos of oranges

C、You'd better give me a hand


参考答案:B

第9题:

以下能正确计算1+2+3+…+10的程序段是 。

A.i=1; s=1; do {s=s+i; i++;} while (i<10);

B.do {i=1;s=0; s=s+i; i++;} while (i<=10);

C.do {i=1;s=1; s=s+i; i++;} while (i<=10);

D.i=1,s=0; do {s=s+i; i++;} while (i<=10);

E.i=1; s=1; do {s=s+i; i++;} while (i<=10);

F.i=1,s=0; do {s=s+i; i++;} while (i<10);


C

第10题:

以下能正确计算1×2×3×…×10的程序段是 。

A.do {i=1;s=1; s=s*i; i++; } while(i<=10);

B.do {i=1;s=0; s=s*i; i++; } while(i<=10);

C.i=1;s=1; do {s=s*i; i++; } while(i<=10);

D.i=1;s=0; do {s=s*i; i++; } while(i<=10);


B