A.checking
B.check
C.to check
D.checked
第1题:
--Are you going to attend the meeting?
--I'm not sure, I ______ go for a business trip instead.
A. would
B. should
C. might
D. must
第2题:
Xiaoyan:So, I' d like to come and see the flat.
Franca: Yes, when is convenient? How about during the day? I usually work in the
evening.
Xiaoyan; Well,I work during the day, but perhaps in the afternoon?
Franca:Well, why don't you come at about 5 o'clock?
Xiaoyan:That's a good idea.
Franca; Are you free on Thursday?
Xiaoyan: No, I'm afraid I'm not. We always have a meeting on Thursday. What about
Wednesday?
Franca:No, I' m sorry. I' m busy on Wednesday. I’m in Cambridge. Are you free on
Friday?
Xaaoyan:Yes,Friday is fine.
Franca: Okay. See you on Friday at 5 o'clock at the flat.
Xiaoyan;Thanks very much. Goodbye.
Franca:Goodbye.
1. Franca usually works during the day.
A. Right
B. Wrong
2. It is convenient for both of them to meet in the afternoon.
A. Right
B. Wrong
3.Xiaoyan is free on Wednesday.
A. Right
B. Wrong
4. Franca is not free on Wednesday because he has a meeting.
A. Right
B. Wrong
5. They are going to meet on Friday at the flat.
A. Right
B. Wrong
第3题:
下列程序的输出结果是【 】。
include<iostream. h>
class MyClass
{
public:
int number;
void set(int i);
};
int number=3;
void MyClass: :set (int i)
{
number=i;
}
void main( )
{
MyClass my1;
int number=10;
my1.set(5),
cout<<my1, number<<',';
my1.set(number);
cout<<my1.number<<',';
my1.set(: :number);
cout<<my1.number<<'.';
}
第4题:
9. _______you _______ stay at home today?
A. Do ; have to
B. Must; have to
C. Have; to
D. Do ; must
第5题:
A.shall
B. can
C.would
D. must
第6题:
Java程序中读入用户输入的一个值,要求创建一个自定义的异常,如果输入值大于10,使用throw语句显式地引发异常,异常输出信息为“something’swrong!”,语句为()。
A.if(I>10)throw Exception(“something’swrong!”);
B.if(I>10)throw Exceptione(“something’swrong!”);
C.if(I>10)thrownew Exception(“something’swrong!”);
D.if(I>10)thrownew Exceptione(“something’swrong!”);