单选题Why do pet dog love performing tricks for their masters?A To avoid being punished.B To show their affection for their masters.C To win leadership of the dog park.D To show their willingness to obey.

题目
单选题
Why do pet dog love performing tricks for their masters?
A

To avoid being punished.

B

To show their affection for their masters.

C

To win leadership of the dog park.

D

To show their willingness to obey.


相似考题
参考答案和解析
正确答案: A
解析:
细节题。第三段的末句话给出了答案;“大部分狗喜欢为你耍花样以示他们愿意受你控制”,所以D项正确。
更多“单选题Why do pet dog love performing tricks for their masters?A To avoid being punished.B To show their affection for their masters.C To win leadership of the dog park.D To show their willingness to obey.”相关问题
  • 第1题:

    请选出An old dog will learn no new tricks正确的汉语译文。()

    • A、爱屋及乌
    • B、狐朋狗党
    • C、老年人很难适应新事物

    正确答案:C

  • 第2题:

    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、 京巴 Dog
    • C、 null
    • D、 Dog京巴

    正确答案:B

  • 第3题:

    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、 23
    • B、 1 3
    • C、 123
    • D、 321

    正确答案:B

  • 第4题:

    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、 143
    • B、 423
    • C、 243
    • D、 1134

    正确答案:A

  • 第5题:

    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、 143
    • B、 423
    • C、 243
    • D、 1134

    正确答案:A

  • 第6题:

    单选题
    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

     33

    B

     13

    C

     23

    D

     123


    正确答案: D
    解析: 暂无解析

  • 第7题:

    单选题
    The dog has _____ its affection to its new master.
    A

    transferred

    B

    transformed

    C

    transported

    D

    transmitted


    正确答案: A
    解析:
    句意为:那狗已把它的感情转移到新主人身上。transfer意为“传递,迁移”;transform意为“(语言)变换,变形”;transport意为“运送”;transmit意为“传送,传达”。

  • 第8题:

    单选题
    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?
    A

    Helping students do self-correction.

    B

    Indirect correction.

    C

    Tolerating correction.

    D

    Encouraging students to do peer correction.


    正确答案: D
    解析:

  • 第9题:

    单选题
    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

     京巴 Dog

    C

     null

    D

     Dog京巴


    正确答案: B
    解析: 暂无解析

  • 第10题:

    单选题
    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

     23

    B

     1 3

    C

     123

    D

     321


    正确答案: A
    解析: 暂无解析

  • 第11题:

    单选题
    Which of the following is a slip of tongue? _____
    A

    A lousy youth, a lazy age.

    B

    Practice makes perfect.

    C

    Love me, love my dog.

    D

    Do as the Romans do.


    正确答案: B
    解析:
    A项的正确表达应为“A lazy youth, a lousy age”,意为“少壮不努力,老大徒伤悲”;B项的意思是“熟能生巧”;C项的意思是“爱屋及乌”;D项的意思是“入乡随俗”。

  • 第12题:

    单选题
    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 Pet

    B

    Cat Cat Cat

    C

    Cat Dog Pet

    D

    Cat Dog Dog


    正确答案: D
    解析: 暂无解析

  • 第13题:

    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、 23
    • B、 13
    • C、 123
    • D、 321

    正确答案:B

  • 第14题:

    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、 33
    • B、 13
    • C、 23
    • D、 123

    正确答案:C

  • 第15题:

    Given the following script, why does the output come out as an empty line instead of "dog"()#!/bin/ksh  $VAR=dog  echo "${VAR}"

    • A、The $VAR variable was not exported.
    • B、The $VAR should have been set as VAR.
    • C、dog needs double quotes around it when setting $VAR.
    • D、The { } should not be around VAR in the echo command.

    正确答案:B

  • 第16题:

    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 Pet
    • B、Cat Cat Cat
    • C、Cat Dog Pet
    • D、Cat Dog Dog

    正确答案:C

  • 第17题:

    单选题
    Given the following script, why does the output come out as an empty line instead of "dog"?()
    A

    The $VAR variable was not exported

    B

    The $VAR should have been set as VAR

    C

    dog needs double quotes around it when setting $VAR

    D

    The { } should not be around VAR in the echo command


    正确答案: B
    解析: 暂无解析

  • 第18题:

    单选题
    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

     23

    B

     13

    C

     123

    D

     321


    正确答案: C
    解析: 暂无解析

  • 第19题:

    单选题
    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

     143

    B

     423

    C

     243

    D

     1134


    正确答案: D
    解析: 暂无解析

  • 第20题:

    单选题
    Why do pet dog love performing tricks for their masters?
    A

    To avoid being punished.

    B

    To show their affection for their masters.

    C

    To win leadership of the dog park.

    D

    To show their willingness to obey.


    正确答案: D
    解析:
    细节题。第三段的末句话给出了答案;“大部分狗喜欢为你耍花样以示他们愿意受你控制”,所以D项正确。

  • 第21题:

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

    treats

    B

    treated

    C

    is treated

    D

    was treated


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

  • 第22题:

    单选题
    The best title for this piece might be _____.
    A

    Human-dog Interaction

    B

    Human-dog Friendship

    C

    Human-dog Antagonism

    D

    Human-dog Relations


    正确答案: D
    解析:
    全文谈论的是狗对人做出的动作的反应,符合题意的应该是A。

  • 第23题:

    单选题
    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?
    A

    Helping students do self-correction.

    B

    Indirect correction.

    C

    Tolerating correction.


    正确答案: A
    解析:

  • 第24题:

    单选题
    请选出An old dog will learn no new tricks正确的汉语译文。()
    A

    爱屋及乌

    B

    狐朋狗党

    C

    老年人很难适应新事物


    正确答案: C
    解析: 暂无解析