He ________to a committee to find out whether the South Branch of the James River was deep enough to be used by large boats.A. appointedB. assignedC. pointedD. was appointed

题目
He ________to a committee to find out whether the South Branch of the James River was deep enough to be used by large boats.

A. appointed

B. assigned

C. pointed

D. was appointed


相似考题

1.The residents of 24 Acacia Grove were dissatisfied with the condition of the property, so John Preston called a meeting to discuss things last week. At the meeting John suggested setting up a residents’ committee. Everyone was so worried and angry about the agent’s inactivity that they agreed, and they elected John as chairman of the committee. Many residents said that they were tired of telephoning the agent and tired of complaining about the flats. Although the agent was responsible for the flats, they thought that he didn’t do enough. Therefore John was asked to write to the agent and say that they were disappointed with the management of the flats.The next service payment was due at the end of the month. However, they agreed not to pay it until they were happy with the plans to improve the property. They decided to tell the agent that he must start the work within one month. They all went away very pleased with themselves.1.Why did John Preston call a meeting last week?A.Because the residents were dissatisfied with the presents’ committee.B.Because the residents were dissatisfied with the bad management of the flats.C.Because some residents requested to change the present residents’ committee. E. Because he wanted to become chairman of the committee.2.Who elected John as chairman of the committee?A.The agentB.the residentsC.the committeeD.Acacia Grove3.What does the word “inactivity”mean in the thrid sentence in Para.1?“inactivity”A.weaknessB.ProgressC.StateD.Lace of actions4.What does the word “due” mean in the first sentence in Para.2?A.to be paidB. ProperC. OwedD. large5.When did they agree to pay the next service payment?A.at the end of the monthB.Within one monthC.When they were happy with the plans to improve the property.D.The agent would tell them.

更多“He ________to a committee to find out whether the South Branch of the James River was deep enough to be used by large boats. ”相关问题
  • 第1题:

    classParent{Stringone,two;

    classParent{

    Stringone,two;

    publicParent(Stringa,Stringb){

    one=a;

    two=b;}

    publicvoidprint(){System.out.println(one);}}

    publicclassChildextendsParent{

    publicChild(Stringa,Stringb){

    super(a,b);

    }

    publicvoidprint(){

    System.out.println(one+"to"+two);

    }

    publicstaticvoidmain(Stringarg[]){

    Parentp=newParent("south","north");

    Parentt=newChild("east","west");

    p.print();

    t.print();

    }

    }

    Whichofthefollowingiscorrect?()


    参考答案:E
    这个题目涉及继承时的多态性问题,在前面的问题中已经有讲述,要注意的是语句t.print();在运行时t实际指向的是一个Child对象,即java在运行时决定变量的实际类型,而在编译时t是一个Parent对象,因此,如果子类Child中有父类中没有的方法,例如printAll(),那么不能使用t.printAll()。

  • 第2题:

    The internetwork infrastructure of company XYZ consists of a single OSPF area as shown in the graphic. There is concern that a lack of router resources is impeding internetwork performance. As part of examining the router resources, the OSPF DRs need to be known. All the router OSPF priorities are at the default and the router IDs are shown with each router. Which routers are likely to have been elected as DR?()

    A.Corp-1

    B.Corp-2

    C.Corp-3

    D.Corp-4

    E.Branch-1

    F.Branch-2


    参考答案:D, F

  • 第3题:

    My father often works( )into the night,which moves me( ).

    A.deeply,deely
    B.deep,deep
    C.deeply,deep
    D.deep,deeply

    答案:D
    解析:
    考查副词辨析。四个选项都与“深深地”有关,其区别在于:deep常用来修饰静止状态和介词短语,第一个空格处应当填入deep,与后面构成deep into the night,表示夜深;deeply一般用来修饰带有感情色彩的动词,因此第二个空格处应填入deeply,用以修饰touched。故本题选D。句意:父亲总是工作到深夜,这让我很受触动。

  • 第4题:

    importjava.awt.*;publicclassXextendsFrame{publicstaticvoidmain(Stringargs){Xx=newX();x.pack();x.setVisible(true);}publicX(){setLayout(newBordrLayout());Panelp=newPanel();add(p,BorderLayout.NORTH);Buttonb=newButton(North”);p.add(b):Buttonb=newButton(South”);add(b1,BorderLayout.SOUTH):}}Whichtwostatementsaretrue?()

    A.Thebuttonslabeled“North”and“South”willhavethesamewidth.

    B.Thebuttonslabeled“North”and“South”willhavethesameheight.

    C.Theheightofthebuttonlabeled“North”canveryiftheFrameisresized.

    D.Theheightofthebuttonlabeled“South”canveryiftheFrameisresized.

    E.Thewidthofthebuttonlabeled“North”isconstanteveniftheFrameisresized.

    F.Thewidthofthebuttonlabeled“South”isconstanteveniftheFrameisresized.


    参考答案:B, E

  • 第5题:

    If a weather bulletin shows the center of a low pressure system to be 100 miles due east of you, what winds can you expect in the Southern Hemisphere? ______.

    A.South-southwesterly

    B.North-northwesterly

    C.South-southeasterly

    D.North-northeasterly


    正确答案:A
    假如你的气象报告显示有一低压区域的中心正好在你船位置以东100海里,在南半球你将预计是什么风?南到西南风。

  • 第6题:

    Jump指令与Branch指令的区别是________。

    A.Jump指令是条件转移指令,根据当前指令执行结果来决定是否需要转移; Branch指令是无条件转移指令,直接跳转。

    B.Jump指令是无条件转移指令,直接跳转; Branch指令是条件转移指令,根据当前指令执行结果来决定是否需要转移。

    C.Jump指令跳转不需保存现场; Branch指令跳转需保存现场。

    D.Jump指令跳转需保存现场; Branch指令跳转不需保存现场。


    Jump指令是无条件转移指令,直接跳转; Branch指令是条件转移指令,根据当前指令执行结果来决定是否需要转移。