更多“The dog looked ______.”相关问题
  • 第1题:

    The dog looked ( ), but its weak breath suggested that it ( ) still ( ).

    A、died/ was/ living

    B、died/ was/ alive

    C、dead/ was/ alive

    D、dead/ be/ living


    参考答案:C

  • 第2题:

    A: Whose dog is it? B: ( )our dog. ( )name is Rex.

    A. It's…It's

    B. Its… Its

    C. It's… Its


    答案: C

  • 第3题:

    A: Whose dog is it? B:()our dog. () name is Rex

    • A、It’s;It’s
    • B、Its;Its
    • C、It’s;Its

    正确答案:C

  • 第4题:

    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;}

    正确答案:D

  • 第5题:

    单选题
    class Dog { }  class Harrier extends Dog { }  class DogTest {  public static void main(String [] args) {  Dog d1 = new Dog();  Harrier h1 = new Harrier();  Dog d2 = h1;  Harrier h2 = (Harrier) d2;  Harrier h3 = d2;  }  }  下面哪一项是正确的?()
    A

    编译失败

    B

    2个Dog对象被创建

    C

    2个Harrier对象被创建

    D

    3个Harrier对象被创建


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

  • 第6题:

    单选题
    —I have looked for my lovely dog everywhere but I still can’t find it.—______
    A

    Great!

    B

    Good idea.

    C

    I don’t think so.

    D

    I’m sorry to hear that.


    正确答案: A
    解析:
    句意:—我到处找过我的爱犬,但是仍然没找到。—听到这个消息真是难过。本题考查交际用语。当听到对方述说坏消息时,通常要以“I’m sorry to hear that”来表达听话人的遗憾之情。因此D项正确。A、B、C三项均不符合语境。

  • 第7题:

    单选题
    Which of the following is the correct order?a. Andi found a dying dog on the topb. Andi climbed up the steep slopec. The Davises brought the dog homed. Andi had much trouble carrying the dog downe. The Davises drove the bull dog to the hospital
    A

    badce

    B

    badec

    C

    abdce

    D

    adbec


    正确答案: B
    解析:
    由原文第二段可知,Andi先登上了陡坡,然后发现了一只奄奄一息的狗。因此b比a先发生。故可先排除C、D项。原文第八段提到“an X-ray showed that the bull dog was badly hurt”,说明Andi全家把狗送入了医院,接下来的一段也指出“brought him home that day”说明Andi全家是先把狗送到医院,然后再将其带回家的。故e比c先发生。故正确的顺序是B项。

  • 第8题:

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


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

  • 第9题:

    单选题
    A: Whose dog is it? B:()our dog. () name is Rex
    A

    It’s;It’s

    B

    Its;Its

    C

    It’s;Its


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

  • 第10题:

    单选题
    Effective communication between a dog and its owner is _____.
    A

    essential to solve the dog’s behavior problems

    B

    the foundation for dogs to perform tasks

    C

    a good way to teach the dog new tricks

    D

    an extreme measure in obedience training


    正确答案: D
    解析:
    细节题。第二段末句说,有效沟通是训练爱犬按照自己的意愿行事的必要方法,表明本题正确答案为B项。A项与本文第二段第二句话意思有出入;C项内容本文无;D项中的“extreme measure”与第三段中第三句话矛盾。

  • 第11题:

    单选题
    The author cites the dog as an example of artificial selection because of all the following statements EXCEPT that ______.
    A

    Dogs are domestic animals

    B

    The dog is one of nature’s survivors

    C

    Breeders register dogs to obtain a pedigree

    D

    Humans have been the primary agents in dog evolution


    正确答案: B
    解析:
    根据文章内容可知人工选择会栽培植物、驯化动物,并且第三段末句指出通过人工选择人们充当了agents of evolution。可见人们对狗进行人工选择时也符合这两方面内容,因此A、D项正确。C项内容在末段提及。由于狗是人工选择的结果,因此就不可能是自然选择的幸存者,故B项表述有误。

  • 第12题:

    单选题
    The primary purpose of obedience training is to _____.
    A

    teach the dog to perform clever tricks

    B

    make the dog aware of its owner’s authority

    C

    provide the dog with outlets for its wild behavior

    D

    enable the dog to regain its normal behavior


    正确答案: D
    解析:
    推断题。文章第一段的最后一句和第二段的第一句说明:防止或医治这些行为的关键就是驯服他。从这两句话中,我们推出正确答案是C项。A、B两项在本文第三段中都有提到,但那只是训练的一个方面,不能作为所说的主要目的,故排除。

  • 第13题:

    I ________ and saw a plane in the sky.

    A.looked at

    B.looked for

    C.look about

    D.looked up


    参考答案:D

  • 第14题:

    A: Whose dog is it? B:()our dog. () name is Rex

    AIt’s;It’s

    BIts;Its

    CIt’s;Its


    C

  • 第15题:

    现有:  class Dog{ }  class Harrier extends Dog  { }       class DogTest{   public  static void main (String  []  args) {      Dog dl=new Dog();      Harrier hl=new Harrier();      Dog d2=hl;   Harrier h2=  (Harrier) d2;      Harrier h3=d2;     }      }  下面哪一项是正确的?()    

    • A、2个Dog对象被创建
    • B、2个Harrier对象被创建
    • C、3个Harrier对象被创建
    • D、编译失败

    正确答案:D

  • 第16题:

    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<bestFriend>; }
    • F、class Man { private BestFriend<dog>; }

    正确答案:D

  • 第17题:

    单选题
    According to what you have read above, working too hard can make people ______.
    A

    let a sleeping dog lie.

    B

    become a lucky dog

    C

    live in a dog-eat-dog world

    D

    work like a dog


    正确答案: D
    解析:
    本文是细节题。根据题干可定位至第二段。第二段第三句说a person has to work very hard; to put it in another way, he has to work like a dog,意思是“某人很努力地工作,另一种表达方式就是某人像狗一样工作”,因此,D项为正确答案。

  • 第18题:

    单选题
    现有:  class Dog{ }  class Harrier extends Dog  { }       class DogTest{   public  static void main (String  []  args) {      Dog dl=new Dog();      Harrier hl=new Harrier();      Dog d2=hl;   Harrier h2=  (Harrier) d2;      Harrier h3=d2;     }      }  下面哪一项是正确的?()
    A

    2个Dog对象被创建

    B

    2个Harrier对象被创建

    C

    3个Harrier对象被创建

    D

    编译失败


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

  • 第19题:

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


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

  • 第20题:

    单选题
    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<bestFriend>; }

    F

    class Man { private BestFriend<dog>; }


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

  • 第21题:

    单选题
    The boy()the dog with a thick stick but the dog did not yield.
    A

    came at

    B

    came with

    C

    won over

    D

    won at


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

  • 第22题:

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


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

  • 第23题:

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