A baby might show fear of an unfamiliar adult, ______ he is likely to smile and reach out to another infant.

题目
A baby might show fear of an unfamiliar adult, ______ he is likely to smile and reach out to another infant.

A.if

B.so that

C.while

D.whenever

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

第1题:

The more seriously this is sought,______(likely)positive attitudes towards leisure as well as academic work will be encouraged.


正确答案:
the more likely [解析] the more…the more…句型。

第2题:

He______________be hungry一he's just had lunch.

A. can't

B. must

C. ought to

D. might


参考答案A

第3题:

He's usually very () at keeping his private life out of the media)

A、adept

B、adopt

C、adapt

D、adult


参考答案:A

第4题:

8、设有下面的一个类定义: class AA { static void show(){ System.out.println(“我喜欢Java!”); } } class BB { void show(){ System.out.println(“我喜欢C++!”); } } 若已经使用AA类创建对象a和BB类创建对象b,则下面哪一个方法调用是正确的?()

A.show() b.show()

B.AA.show() BB.show()

C.AA.show() b.show()

D.a.show() BB.show()


B

第5题:

以下程序的运行结果为?

class ValHold{

public int i = 10;

}

public class ObParm{

public static void main(String argv[]){

ObParm o = new ObParm();

o.amethod();

}

public void amethod(){

int i = 99;

ValHold v = new ValHold();

v.i=30;

another(v,i);

System.out.print( v.i );

}

public void another(ValHold v, int i){

i=0;

v.i = 20;

ValHold vh = new ValHold();

v = vh;

System.out.print(v.i);

System.out.print(i);

}

}

A.10030

B. 20030

C. 209930

D. 10020


正确答案:D

第6题:

The song Yesterday Once More can always make me () (smile).


参考答案:smile

第7题:

设有下面的两个类定义: class AA{ void Show ( ) {System.out.println ("I Like Java"):} } class BB extends AA} void Show ( ) {System.out.println ("I like C++"); } } 则顺序执行如下语句后输出的结果为( )。 AA a; BB b; a.Show (); b.Show ();

A.I Like Java I Like C++

B.I Like C++ I Like Java

C.I Like Java I Like Java

D.I Like C++ I Like C++


正确答案:A

第8题:

“Tom graduated from college at a very young age.” “He () have been an outstanding student.”

A.must

B.could

C.should

D.might


参考答案:A

第9题:

We can’t_______another 100 kilometers any more.

A.have
B.turn
C.make
D.reach

答案:C
解析:

第10题:

【单选题】System.out对象中输出换行的方法是

A.print()

B.println()

C.printf()

D.show()


B