西安电子科技大学

"Can I wear my hair long like the other boys?" "I'd rather_____ ."A、you didn'tB、you can'tC、you won’tD、you wouldn't

题目
"Can I wear my hair long like the other boys?" "I'd rather_____ ."

A、you didn't

B、you can't

C、you won’t

D、you wouldn't

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

第1题:

I, my, will, true, come, hope, dream

__________________________________________________________________________.


正确答案:
I hope my dream will come true. / I dream my hope will come true.

第2题:

设有定义inti=123;longj=456;下面赋值不正确的语句是()

A.j=i;

B.j=(long)i;

C.i=(int)j;

D.i=j;


参考答案:D

第3题:

Lodger: I’m terribly sorry that I broke you precious vase. I’ll pay for it.Landlady:____.

A.Can’t complain

B.Take care

C.Relax yourself

D.Never mind


参考答案:D

第4题:

If he had really been there, I ___________ have seen him

A.will
B.shall
C.should
D.can

答案:C
解析:
考查应拟语气。根据if条件从句中的had really been there可知,这是与过去事实相反的虚拟语气.因此从句谓语动词用had+过去分词的形式,主句谓语动词用would/should/could/might+have+过去分词的形式。故C项正确。

第5题:

If any beasts comes at you, I()stay with you and help you.

A、am going to

B、will

C、can


正确答案:B

第6题:

— Jane, I’m coming to say good-bye. I’m leaving tomorrow.\n— _______

A.I’m sorry.

B.Oh, no. Why?

C.Go slowly.

D.Why soon? Can’t you stay a few days longer?


参考答案:D

第7题:

Integeri=newInteger(42);Long1=newLong(42);Doubled=newDouble(42.0);WhichtwoexpressionsevaluatetoTrue?()

A.(i==1)

B.(i==d)

C.(d==1)

D.(i.equals(d))

E.(d.equals(i))

F.(i.equals(42)


参考答案:D, E

第8题:

Using "I" or "My' instead of "most people" or "our group" ______ message credibility.

A decreases

B increases

C has no effect on

D distorts

E A and B


正确答案:B

第9题:

设有定义int i=123;long j=456;,下列赋值不正确的是

A.j=i;

B.j=(long)i;

C.i=(int)j;

D.i=j;


正确答案:D
解析:选项A)j=i,因为j是long型,而等号左边是int型,所以将位数少的数值向位数多的数值转换时,可以自动转换,所以选项A)正确。选项B)j=(long)i,当然既能自动转换,我们在前面加上位数多的那个数据类型的名称,也只是更加安全,所以选项B)正确。选项C)i=(int)j,它属于必须进行强制转换数据类型的那种情况,因为想把一个位数多的数据转换成一个位数更少的数据类型,必须强制转换,方法是在()中说明向哪个数据类型转换,结果是使j的精度降低到int型。选项D)i=j,没有进行强制转换,会发生编译错误。

第10题:

设有定义 int i=123; long j=456; 下面赋值不正确的语句是

A.j=i;

B.j=(long)i;

C.i=(int)j;

D.i=j;


i=j;