网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
She_as an animal trainer since2003.
A.hasworked
B.works
C. willwork
D.worked
B.works
C. willwork
D.worked
参考答案
参考解析
解析:考査时态。since意为“自从”,应用现在完成时态,所以答案应选A。
更多 “She_as an animal trainer since2003. A.hasworked B.works C. willwork D.worked ” 相关考题
考题
有如下程序: include using namespaee std;class Animal{ public: virtual char*g
有如下程序:include<iostream>using namespaee std;c lass Animal{public:virtual char*getType( )const{return"Animal";}virtual char*getVoice( )const{return"Voice";}};class Dog:public Animal{public:char*getType( )const{return"Dog";}char*getVoice( )eonst{return"Woof";}};void type(AnimalA) {cout<<a.getType( );}void speak(Animal A) {eout<<a.getVoice( );}int main( ){Dog d;type(D) ;cout<<"speak";speak(D) ;cout return 0;}程序的输出结果是______。
考题
下列程序片段中,能通过编译的是A.public abstract class Animal{ public void speak();}B.public abstract class Animal{ public void speak(){}}C.public class Animal{ public abstract void speak();}D.public abstract class Animal{ public abstract void speak(){}}
考题
The example of the grandmotherly woman is used to show the public\'sA. discontent with animal research.B. ignorance about medical science.C. indifference to epidemics.D. anxiety about animal rights.
考题
From the text we learn that Stephen Cooper isA. a well-known humanist.B. a medical practitioner.C. an enthusiast in animal rights.D. a supporter of animal research.
考题
( 12 )有如下程序:#include iostreamusing namespace stdclass Animal{public:virtual char* getType () const { return "Animal" ; }virtual char* getVoice () const { return "Voice" ; }};Class Dog : public Animal {public:char* getType ( ) const {return "Dog" ; }char* getVoice ( ) const {return "Woof"}};void type ( Animal a ) {couta.getType ( ) ; }void speak ( Animal a ) {couta.getVoice ( ) ; }int main ( ) {Dog d; type ( d ) ; cout" speak" ; speak ( d ) ; coutendi;return 0;}运行时的输出结果是【 12 】 。
考题
It can be inferred from the passage that all of the following are ways of producing new strains of influenza viruses EXCEPT______.A. two influenza viruses in the same animal recombiningB. animal viruses recombining with human virusesC. two animal viruses recombining in one animalD. two animal viruses recombining in a human
考题
下列程序片段中,能通过编译的是( )。 A.public abstract class Animal{ public void speak;}S
下列程序片段中,能通过编译的是( )。A.public abstract class Animal{ public void speak;}B.public abstract class Animal{ public void speak{);}C.public class Animal{ pubilc abstract void speak;}D.public abstract class Animal{ pubile abstract void speak{};}
考题
What must new members do before using the fitness center?A.Get a health certificate from a doctor
B.Pay for a year's membership
C.Attend a training session on safety
D.Register with a personal trainer
考题
Can animals be made to work for us?Some scientists think that one day animals may be trained to do a number of simple jobs that are now done by human beings.
They point out that at a circus,for example,we may see elephants,monkeys,dogs and other animals doing quite skillful things.Perhaps you have seen them on the television or in a film.If you watch closely,you may notice that the trainer always gives the animal a piece of candy or a piece of fruit as a reward.The scientists say that many different animals may be trained to do a number of simple jobs if they know they will get a reward for doing them.
Of course,as we know,dogs can be used to guard a house,and soldiers in both old and modem times have used geese to give warning by making a lot of noise when a stranger or an enemy comes near.But it may be possible to train animals to work in factories.In Russia,for example,pigeons which are birds with good eyesight,are being used to watch out for faults in small steel balls that are being made in one factory.When the pigeon sees a ball which looks different from others,it touches a steel plate with its beak.This turns on a light to warn people in the factory.At the same time a few seeds are given as a reward.It takes three to five weeks to train a pigeon to do this and one pigeon can inspect 3 000 to 4 000 balls an hour.
Apes have been used in America in helping to make cars,and scientists believe that these large monkeys may be one day gather crops and even drive trains.
The trainer usually gives the animal a piece of candy or fruit__.A.when it is hungry
B.before it plays a trick
C.when it starts to play a trick
D.after it has done the trick
考题
classCatextendsAnimal{}对于下述代码说法正确的是()A、Cat是Animal的子类B、Animal是Cat的子类C、Cat是Animal的超类D、Animal一定是抽象类
考题
11. class Animal { public String noise() { return “peep”; } } 12. class Dog extends Animal { 13. public String noise() { return “bark”; } 14. } 15. class Cat extends Animal { 16. public String noise() { return “meow”; } 17. } ..... 30. Animal animal = new Dog(); 31. Cat cat = (Cat)animal; 32. System.out.printIn(cat.noise()); What is the result?() A、 peepB、 barkC、 meowD、 Compilation fails.E、 An exception is thrown at runtime.
考题
单选题11. class Animal { public String noise() { return “peep”; } } 12. class Dog extends Animal { 13. public String noise() { return “bark”; } 14. } 15. class Cat extends Animal { 16. public String noise() { return “meow”; } 17. } ..... 30. Animal animal = new Dog(); 31. Cat cat = (Cat)animal; 32. System.out.printIn(cat.noise()); What is the result?()A
peepB
barkC
meowD
Compilation fails.E
An exception is thrown at runtime.
考题
单选题在Java中,类Animal中的方法printA()定义如下: public void printA() { Int a=10; Int result =10%3; System.out.println(result); } 在类Dog中方法printA()定义如下: public void printA() { Int a=10; System.out.println(a/3); } Dog类的定义如下: Class Dog extends Animal{…}. Animal animal=new Dog(); animal.printA(); 以上语句输出结果为()。A
0B
1C
2D
3E
3.3333
考题
单选题现有: 1. interface Animal { 2. void eat(); 3. } 4. 5. // insert code here 6. 7. public class HouseCat extends Feline { 8. public void eat() { } 9. } 和五个声明: abstract class Feline implements Animal { } abstract class Feline implements Animal { void eat(); } abstract class Feline implements Animal { public void eat(); } abstract class Feline implements Animal { public void eat() { } } abstract class Feline implements Animal { abstract public void eat(); } 分别插入到第5行,有几个可以通过编译?()A
0B
1C
2D
3
考题
单选题现有: 1. interface Animal f 2. void eat(); 3. } 4. 5. // insert code here 6. 7. public class HouseCat implements Feline { 8. public void eat() { } 9. } 和以下三个接口声明: interface Feline extends Animal ( ) interface Feline extends Animal {void eat(); } interface Feline extends Animal {void eat() { } } 分别插入到第5行,有多少行可以编译?A
0B
1C
2D
3
考题
单选题现有: interface Animal { void eat () ; } //insert code here public class HouseCat extends Feline { public void eat() { } } 和五个申明 abstract class Feline implements Animal { } abstract class Feline implements Animal { void eat () ; } abstract class Feline implements Animal { public void eat();} abstract class Feline implements Animal { public void eat() {} } abstract class Feline implements Animal { abstract public void eat();} 结果为:()A
1B
2C
3D
4
考题
单选题1. interface Animal { 2. void eat(); 3. } 4. 5. // insert code here 6. 7. public class HouseCat implements Feline { 8. public void eat() { } 9. } 和以下三个接口声明: interface Feline extends Animal { } interface Feline extends Animal { void eat(); } interface Feline extends Animal { void eat() { } } 分别插入到第 5 行,有多少行可以编译?()A
0B
1C
2D
3
考题
填空题Animal welfare was a low-rated trust factor partly because consumers were reluctant to pay extra money for “animal friendly” products.____
考题
单选题1. class Animal { Animal getOne() { return new Animal(); } } 2. class Dog extends Animal { 3. // insert code here 4. } 5. 6. class AnimalTest { 7. public static void main(String [] args) { 8. Animal [] animal = { new Animal(), new Dog() } ; 9. for( Animal a : animal) { 10. Animal x = a.getOne(); 11. } 12. } 13. } 和代码: 3a. Dog getOne() { return new Dog(); } 3b. Animal getOne() { return new Dog(); } 第 3 行中插入的哪项将编译且运行无异常?()A
3a行B
3b行C
3a行或3b行D
既非3a,也非3b
考题
单选题class Animal{ Animal getOne(){return new Animal();}} class Dog extends Animal{ //insert code here } class AnimalTest{ public static void main(String[] args){ Animal[] animal={ new Animal(), new Dog()}; for(Animal a:animal){ Animal x= a.getOne(); } } } 和代码: 3a.Dog getOne() { return new Dog();} 3b.Animal getOne() { return new Dog();} 第3行中插入的哪项编译且运行无异常?A
3a行或3b行B
既非3a,也非3bC
3a行D
3b行
考题
单选题The reason why man differs from the animals is that _____.A
man has education but animal notB
man is higher animal than any othersC
man is more susceptible to the environment than animalsD
after education, man will change permanently in the habits of behavior, thought and attitude
热门标签
最新试卷