单选题The pet dog is warm and loving. It ______ as a daughter of my family.AtreatsBtreatedCis treatedDwas treated

单选题
The pet dog is warm and loving. It ______ as a daughter of my family.
A

treats

B

treated

C

is treated

D

was treated


参考解析

解析:
句意:那只宠物狗又温暖又可爱。它被我的家人当做女儿一样对待。本题考查动词的时态和语态。it指代“那只宠物狗”,与treat之间存在被动关系,应用被动语态;又因为前一句时态为一般现在时,因此该句也应用一般现在时。C项符合题意。

相关考题:

Many intelligent animals can be trained to understand human speech.A good _______ is the pet dog. A. styleB. riseC. in pointD. case in point

如下程序的输出结果是______。 include using namespace std; class Pet{ char nam 如下程序的输出结果是______。include<iostream>using namespace std;class Pet{char name[10];public:Pet(char*nanle){strcpy(this->name,name);}const char*getName( )const{return name;}virtual void call( )eonst=0;};class Dog:public Pet{public:Dog(char*name):Pet(name){ }void call( )eonst{cout<<"汪汪叫";}};class Cat:public Pet{public:Cat(char*name):Pet(name){ }void call( )const{eout<<"喵喵叫";}};int main( ){Pet*petl=new Dog("哈克"),*pet2=new Cat("吉米");eout<<petl->getName( );petl->call( );eout<<endl;cout<<pet2->getName( );pet2->call( );eout<<endl;return 0;}

publicclassPet{publicvoidspeak(){System.out.print(Pet”);}}publicclassCatextendsPet{publicvoidspeak(){System.out.print(Cat”);}}publicclassDogextendsPet{publicvoidspeak(){System.out.print(Dog”);}}执行代码Pet[]p={newCat(),newDog(),newPet()};for(inti=0;i〈p.length;i++)p[i].speak();后输出的内容是哪项?()A.PetPetPetB.CatCatCatC.CatDogPetD.CatDogDog

publicclassPet{privateStringname;publicPet(Stringname){this.name=name;}publicvoidspeak(){System.out.print(name);}}publicclassDogextendsPet{publicDog(Stringname){super(name);}publicvoidspeak(){super.speak();System.out.print(Dog”);}}执行代码Petpet=newDog(京巴”);pet.speak();后输出的内容是哪项?()A.京巴B.京巴DogC.nullD.Dog京巴

有如下程序: include using namespace std; class Pet{ char name[10]; public: Pet(c 有如下程序:include<iostream>using namespace std;class Pet{char name[10];public:Pet(char*name){strcpy(this->name,name);}const char*getName()const {return name;}virtual void call()const=0;};class Dog:public Pet{public:Dog(char*name):Pet(name){}void call()const{cout<<"汪汪叫":}};class Cat:public Pet{public:Cat(char*name):Pet(name){}void call()const{cout<<"喵喵叫";}};int main(){Pet*pet1=new Dog("哈克"),*pet2=new Cat("吉米");cout<<pet1->getName();pet1->call();cout<<end1;cout<<pet2->getName();pet2->call();cout<<end1;return 0;}程序的输出结果是______。

What is the teacher doing in terms of error correction?T: Does any of you have a pet at home?S: 1 have dog at home.T: Oh, I see you have a dog at home. Is your dog big or small?A.Helping students do self-correction.B.Indirect correction.C.Tolerating correction.D.Encouraging students to do peer correction.

What is the teacher doing in terms of error correction?T: Does any of you have a pet at home?S: I have dog at home.T: Oh, I see you have a dog at home. Is your dog big or small?A.Helping self-correction.B.Issuing indirect correction.C.Tolerating correction.D.Peer correction.

共用题干Every Dog Has His SayKimiko Fukuda always wondered what her dog was trying to say.Whenever she put on makeup,it would pull at her sleeve._____(1)When the dog barks,she glancesat a small electronic gadget(装置).The following "human" translation appears on its screen:"Please take me with you.""I realized that's how he was feeling,"says Fukuda.The gadget is called Bowlingual,and it translates dog barks into feelings.People laughed when the Japanese toymaker Takara Company made the world's first dog-human translation machine in 2002.But 300, 000 Japanese dog owners bought it._____(2)"Nobody else had thought about it,"said Masahiko Kajita,who works for Takara."We spend so much time training dogs to understand our orders;what would it be like if we could understand dogs?"Bowlingual has two parts._____(3)The translation is done in the gadget using a database containing every kind of bark.Based on animal behaviour research,these noises are divided into six categories: happiness,sadness,frustration,anger,declaration and desire._____(4)In this way,the database scientifically matches a bark to an emotion,which is then translated into one of 200 phrases.When a visitor went to Fukuda's house recently,the dog barked a loud"bow wow". _____(5)It was followed by"I'm stronger than you"as the dog growled and sniffed(嗅)at the visitor.The product will be available in U.S. pet stores this summer for about U.S.$120.It can store up to 1 00 barks,even recording the dog's emotions when the owner is away._________(4)A:.A wireless microphone is attached to the dog's collar,which sends information to the gadget held by the owner.B:.Nobody really knows how a dog feels.C:.This translated as"Don't come this way".D:.More customers are expected when the English version is launched this summer.E:.Now,the Japanese girl thinks she knows.F:Each one of these emotions is then linked to a phrase like"Let's play","Look at me", or"Spend more time with me".

I'm afraid that your daughter has failed to get through her mid-term exams.A:pass off B:pass away C:pass D:pass out

public class Pet{     private String name;     public Pet(){  System.out.print(1);    }  public Pet(String name){        System.out.print(2);    } }  public class Dog extends Pet{     public Dog(String name){        System.out.print(3);    } }  执行new Dog(“棕熊”);后程序输出是哪项?() A、 23B、 13C、 123D、 321

public class Pet{     private String name;     public Pet(String name){       this.name = name;    }  public void speak(){     System.out.print(name); }  }  public class Dog extends Pet{     public Dog(String name){       super(name);    }  public void speak(){    super.speak();  System.out.print(“ Dog ”);    } }  执行代码   Pet pet = new Dog(“京巴”);  pet.speak();  后输出的内容是哪项?() A、 京巴B、 京巴 DogC、 nullD、 Dog京巴

public class Pet{   private String name;   public Pet(){   System.out.print(1);  }   public Pet(String name){   System.out.print(2);  }   }   public class Dog extends Pet{  public Dog(String name){   //这里隐藏了一句代码:super.pet();   System.out.print(3);  }   }   执行new Dog(“棕熊”);后程序输出是哪项?() A、 23B、 1 3C、 123D、 321

Which Man class properly represents the relationship "Man has a best friend who is a Dog"?()A、class Man extends Dog{}B、class Man implements Dog{}C、class Man{private BestFriend dog;}D、class Man{private Dog bestFriend;}E、class Man{private Dog;}F、class Man{private BestFriend;}

public class Pet{   private String name;   public Pet(){   System.out.print(1);  }   public Pet(String name){   System.out.print(2);   }  }   public class Dog extends Pet{  public Dog(){   System.out.print(4);  }   public Dog(String name){   //这里隐藏了一句代码:super.pet();   this();   System.out.print(3);  }  }   执行new Dog(“棕熊”);后程序输出是哪项?() A、 143B、 423C、 243D、 1134

public class Pet{  public void speak(){   System.out.print(“ Pet ”);  }  }   public class Cat extends Pet{  public void speak(){   System.out.print(“ Cat ”);  }  }   public class Dog extends Pet{  public void speak(){   System.out.print(“ Dog ”);  }  }   执行代码   Pet[] p = {new Cat(),new Dog(),new Pet()};   for(int i=0;i〈p.length;i++)   p[i].speak();   后输出的内容是哪项?()  A、Pet Pet PetB、Cat Cat CatC、Cat Dog PetD、Cat Dog Dog

public class Pet{     private String name;     public Pet(){  System.out.print(1);    }  public Pet(String name){        System.out.print(2);    } }  public class Dog extends Pet{     public Dog(){  System.out.print(4);    }  public Dog(String name){        this();  System.out.print(3);    } }  执行new Dog(“棕熊”);后程序输出是哪项?()  A、 143B、 423C、 243D、 1134

单选题public class Pet{   private String name;   public Pet(){   System.out.print(1);  }   public Pet(String name){   System.out.print(2);  }  }   public class Dog extends Pet{  public Dog(){   System.out.print(4);  }   public Dog(String name){   super(name);   System.out.print(3);  }   }   执行new Dog(“棕熊”);后程序输出是哪项?()A 33B 13C 23D 123

单选题What is the teacher doing in terms of error corection?T: Does any of you have a pet at home?S:I have dog at home.T: Oh,I see you have a dog at home. Is your dog big or small?AHelping students do self-correction.BIndirect correction.CTolerating correction.DEncouraging students to do peer correction.

单选题What is the teacher doing in terms of error correction? T: Does any of you have a pet at home? S: / have dog at home. T: Oh, / see you have a dog at home. Is your dog big or small?AHelping students do self-correction.BIndirect correction.CTolerating correction.

单选题public class Pet{     private String name;     public Pet(){  System.out.print(1);    }  public Pet(String name){        System.out.print(2);    } }  public class Dog extends Pet{     public Dog(String name){        System.out.print(3);    } }  执行new Dog(“棕熊”);后程序输出是哪项?()A 23B 13C 123D 321

单选题public class Pet{  public void speak(){   System.out.print(“ Pet ”);  }  }   public class Cat extends Pet{  public void speak(){   System.out.print(“ Cat ”);  }  }   public class Dog extends Pet{  public void speak(){   System.out.print(“ Dog ”);  }  }   执行代码   Pet[] p = {new Cat(),new Dog(),new Pet()};   for(int i=0;i〈p.length;i++)   p[i].speak();   后输出的内容是哪项?()APet Pet PetBCat Cat CatCCat Dog PetDCat Dog Dog

单选题Which Man class properly represents the relationship “Man has a best friend who is a Dog”?()A class Man extends Dog { }B class Man implements Dog { }C class Man { private BestFriend dog; }D class Man { private Dog bestFriend; }E class Man { private Dog }F class Man { private BestFriend }

单选题public class Pet{   private String name;   public Pet(){   System.out.print(1);  }   public Pet(String name){   System.out.print(2);  }   }   public class Dog extends Pet{  public Dog(String name){   //这里隐藏了一句代码:super.pet();   System.out.print(3);  }   }   执行new Dog(“棕熊”);后程序输出是哪项?()A 23B 1 3C 123D 321

单选题public class Pet{     private String name;     public Pet(String name){       this.name = name;    }  public void speak(){     System.out.print(name); }  }  public class Dog extends Pet{     public Dog(String name){       super(name);    }  public void speak(){    super.speak();  System.out.print(“ Dog ”);    } }  执行代码   Pet pet = new Dog(“京巴”);  pet.speak();  后输出的内容是哪项?()A 京巴B 京巴 DogC nullD Dog京巴

单选题Which Man class properly represents the relationship "Man has a best friend who is a Dog"?()Aclass Man extends Dog{}Bclass Man implements Dog{}Cclass Man{private BestFriend dog;}Dclass Man{private Dog bestFriend;}Eclass Man{private Dog;}Fclass Man{private BestFriend;}

单选题The best title for this piece might be _____.AHuman-dog InteractionBHuman-dog FriendshipCHuman-dog AntagonismDHuman-dog Relations

单选题Why do pet dog love performing tricks for their masters?ATo avoid being punished.BTo show their affection for their masters.CTo win leadership of the dog park.DTo show their willingness to obey.