niusouti.com

His hand shook a little as he _______ the key in the lockA) squeezed B) inserted C) stuffed D) pierced

题目

 His hand shook a little as he _______ the key in the lock

A) squeezed           B) inserted             C) stuffed         D) pierced


相似考题

4.阅读下列函数说明和C++代码,回答问题[说明]任何一种程序都是为了解决问题而撰写的,解决问题时需要实现一些特定的运算法则。在策略(Strategy)模式下,可以更换实现算法的部分而不留痕迹,切换整个算法,简化改为采用其他方法来解决同样问题。以下是一个“剪刀石头布”游戏。猜拳时的“策略”有2种方法:第一种是“猜赢后继续出同样的招式”(WinningStrategy),第二种是“从上一次出的招式中,以概率分配方式求出下一个招式的几率”(ProbStrategy)。程序中定义了Hand类表示猜拳时的“手势”,类内部以0(石头)、1(剪刀)、2(布)来表示。Hand类的实例只会产生3个。以下是C++语言实现,能够正确编译通过。[C++代码]class Hand{private:int handvalue;static Hand *hand0;static Hand *hand1;static Hand *hand2;(1) ;Hand(int handvalue){this->handvalue = handvalue;}public:(2) Hand* getHand(int handvalue){/*省略具体实现*/}};Hand *Hand::hand0 = new Hand(0);Hand *Hand::hand1 = new Hand(1);Hand *Hand::hand2 = new Hand(2);class Strategy{public:(3) Hand* nextHand() = 0;};class WinningStrategy : public Strategy{private:bool won;Hand *prevHand;public:winningStrategy(){won = false;}Hand* nextHand(){if(!won){prevHand = Hand::getHand(rand()%3);}return prevHand;}};class probstrategy : public Strategy{public:Hand* nextHand(){int handvalue = 0;/*省略具体实现*/return Hand::getHand(handvalue);}};class Player{private:string name;Strategy* strategy;public:Player(string name, (4) strategy){this->name = name;this->strategy = strategy;}Hand *nextHand()(//向战略请示手势return (5) ;}};

参考答案和解析

他的手在颤抖当他把钥匙插入锁中时。
固定搭配 inserted   in 把  插入    所以选B

 

更多“His hand shook a little as he _______ the key in ”相关问题
  • 第1题:

    The longer they listen to him, the (little) ( ) they like him.


    正确答案:less 

  • 第2题:

    You are signing on a deck officer,who will be designated as one of the GMDSS operators,before sailing foreign.Which statement is TRUE ________.

    A.He/she must have an STCW certificate endorsed as“Valid for Service on Vessels Operating in the GMDSS System”

    B.He/she must present either an FCC-issued license or a Coast Guard-issued license

    C.You must consult the“List of Qualifications”on the reverse of his/her FCC-issued license

    D.His/her Merchant Mariners Document must have an added endorsement as “Radio Electronics Officer”


    正确答案:A

  • 第3题:

    下列表达正确的是()

    A.if(key=0)

    B.if(key==0)

    C.for(key=0)

    D.while(key=0);


    pause是暂停信号,高电平时计数器停止计数

  • 第4题:

    PubMed数据库中检索韩冬季(HanDongji)的文章,检索式输入正确的是哪项?()

    A.Han D.J

    B.Han D J

    C.Han DJ

    D.Han D.


    正确答案:C

  • 第5题:

    The working parent is not willing to listen to her (his) four-year-old child talking about hissandbox games because she (he) is___________.

    A.boring
    B.very tired
    C.busy
    D.angry

    答案:B
    解析:
    通读第四段,注意短语“fartoo beaten down”,可知父母每天工作非常辛苦和疲惫。所以和孩子的交流沟通少了。正确答案为B。A、C、D都不符合题意。

  • 第6题:

    6.设按键key按下时,产生低电平0。实现key按下时,key_state 置1的程序段是()

    A.if(key == 1) { delay(200); if(key == 1) key_state = 1; }

    B.if(key == 0) { delay(200); if(key == 0) key_state = 1; }

    C.while(key == 0) { delay(200); while (key == 0) key_state = 1; }

    D.while(key == 1) { delay(200); while (key == 1) key_state = 1; }


    A