Henry talks to his dog as if it ______ him.

题目
Henry talks to his dog as if it ______ him.

A.understood

B.understand

C.understands

D.would understand

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

第1题:

The young girl_____ fluent French.

A. says

B. speaks

C. talks


参考答案:B

第2题:

I suggest ______ in English in class.

A: to talk

B: talk

C: talking

D: talks


参考答案:B

第3题:

—Mark speaks English well, but you??____________ him.

—Thank you. .

A. speak as badly as B. speak worse than

C. don’t speak so badly as D. speak much better than


正确答案:D

第4题:

在前面几题的基础上,有子类Dog和Cat继承了父类Animal,如下空格的输出是以下哪个选项? dog = Dog('coco','small'); cat = Cat('kawaii') >>> isinstance(dog, Animal) ___________ >>> isinstance(cat, Animal) ___________ >>> isinstance(dog, Dog) ___________ >>> isinstance(dog, Cat) ____________

A.True True False False

B.True True True False

C.True False False True

D.True True True True


True True True False

第5题:

对于下列Dog类,哪个叙述是错误的? class Dog{ Dog(int m){ } Dog(double m){ } int Dog(int m){ return 23; } void Dog(double m){ } }

A.Dog(int m)与Dog(double m)是互为重载的构造方法

B.int Dog(int m)与 void Dog(double m)是互为重载的非构造方法

C.Dog类只有两个构造方法,而且没有无参的构造方法

D.Dog类有3个构造方法


Dog类有3个构造方法。

第6题:

The child _________ fluent French.

A. says

B. speaks

C. talks


参考答案:B

第7题:

对于下列Dog类,哪个叙述是错误的? class Dog { Dog(int m){ } Dog(double m){ } int Dog(int m){ return 23; } void Dog(double m){ } }

A.Dog类有3个构造方法。

B.Dog(int m)与Dog(double m)互为重载的构造方法。

C.int Dog(int m)与void Dog(double m)互为重载的非构造方法。

D.Dog类只有两个构造方法,而且没有无参数的构造方法。


Dog类有3个构造方法。

第8题:

Where's the boy? We can’t ________c找到) him.


正确答案:
  32. find

第9题:

下列Dog类,错误的描述是: class Dog{ Dog(int m){} Dog(double m){} int Dog(int m){ return 1;} void Dog(double m){} }

A.Dog类有3个构造方法

B.Dog(int m)与 Dog(double m)互为重载的构造方法。

C.int Dog(int m)与 void Dog(double m)互为重载的非构造方法。

D.Dog类只有两个构造方法,而且没有无参数的构造方法。


Dog(int m)与 int Dog(int m) 是重载的构造方法;

第10题:

1、在前面几题的基础上,有子类Dog和Cat继承了父类Animal,如下空格的输出是以下哪个选项? dog = Dog('coco','small'); cat = Cat('kawaii') >>> isinstance(dog, Animal) ___________ >>> isinstance(cat, Animal) ___________ >>> isinstance(dog, Dog) ___________ >>> isinstance(dog, Cat) ____________

A.True True False False

B.True True True False

C.True False False True

D.True True True True


True True True False