Henry's job was to examine cars which crossed the frontier to make sure that they were not smuggling anything into the country. Every morning,except at weekends,he (11) see a factory worker coming up the hill towards the frontier, (12) a bicycle with a bi

题目

Henry's job was to examine cars which crossed the frontier to make sure that they were not smuggling anything into the country. Every morning,except at weekends,he (11) see a factory worker coming up the hill towards the frontier, (12) a bicycle with a big load of old straw on it. When the bicycle arrived the frontier,Henry used to stop the man and order him to take the straw off. Then he would examine the straw very carefully to see (13) he could find anything,after which he would look in all the man's pockets before he let him tie the straw up again. The man would then put it on his bicycle and go off down the hill with it. Although Henry was always (14) to find gold or jewelry or other valuable things hidden in the straw,he never found (15) ,even though he examined it very carefully. He was sure that the man was smuggling something,but he was not (16) 鱼to imagine what it could be.

Then one evening,after he had looked through the straw and emptied the factory worker's pockets (17) usual,he said to him,“Listen,I know that you are smuggling things (18) this frontier. Won't you tell me what it is that you're bringing into the country so successfully? I'm an old man,and today's my last day on the job. Tomorrow I'm going to (19) . I promise that I shall not tell anyone if you tell me what you've been smuggling. ”The factory worker did not say anything for (20) . Then he smiled,turned to Henry and said quietly:“Bicycles. ”

A. should

B. might

C. would

D. must


相似考题
参考答案和解析
正确答案:C
[解析] 情态动词would用以表达习惯性“总是,总会”。
更多“Henry's job was to examine cars which crossed the frontier to make sure that they were not ”相关问题
  • 第1题:

    关于整型切片的初始化,下面正确的是()

    A. s := make([]int)

    B. s := make([]int, 0)

    C. s := make([]int, 5, 10)

    D. s := []int{1, 2, 3, 4, 5}


    参考答案:BCD

  • 第2题:

    What's ( )job? Are ( ) British?

    A. your, your

    B. you, your

    C. your, you


    正确答案:C

  • 第3题:

    To set the history retention period for either window logging or job logging individually, which parameters of the SET_SCHEDULER_ATTRIBUTE procedure need to be used?()

    A. LOG_HISTORY

    B. JOB_LOG_RETENTION

    C. WINDOW_LOG_RETENTION

    D. WHICH_LOG

    E. LOG_NAME


    参考答案:A, D

  • 第4题:

    关于slice或map操作,下面正确的是()

    A.

    var s []ints = append(s,1)

    B.

    var m map[string]intm["one"] = 1

    C.

    var s []ints = make([]int, 0)s = append(s,1)

    D.

    var m map[string]intm = make(map[string]int)m["one"] = 1


    参考答案:ACD

  • 第5题:

    Youwanttopurgejobentriesolderthan5daysfromthejoblog.Youdonotwanttopurgewindowlogentries.Whichcommandwillyouusetoaccomplishthistask?()

    A.EXECUTEDBMS_SCHEDULER.PURGE_LOG(log_history=>5,job_name=>’JOB1’);

    B.EXECUTEDBMS_SCHEDULER.PURGE_LOG(log_history=>5,job_name=>’JOB_LOG’);

    C.EXECUTEDBMS_SCHEDULER.PURGE_LOG(log_history=>5,which_log=>’JOB1’);

    D.EXECUTEDBMS_SCHEDULER.PURGE_LOG(log_history=>5,which_log=>’JOB_LOG’);


    参考答案:D

  • 第6题:

    设有一组作业,它们的作业提交时刻及估计运行时间如下所示: 作业号 提交时刻 估计运行时间(分钟) Job1 8:30 70 Job2 9:10 30 Job3 9:30 15 Job4 9:50 5 在单道批处理方式下,采用短作业优先调度算法,作业的执行顺序为

    A.Job1,Job4,Job3,Job2

    B.Job1,Job3,Job4,Job2

    C.Job4,Job3,Job2,Job1

    D.Job4,Job1,Job2,Job3


    正确答案:B
    解析:本题考查短作业优先调度算法的概念。短作业(进程)优先调度算法是指对短作业或短进程优先调度的算法。它们可以分别用于作业调度和进程调度。短作业优先调度算法,是从后备队列中选择一个或若干个估计运行时间最短的作业,将它们调入内存运行。而短进程优先调度算法,则是从就绪队列中选出一估计运行时间最短的进程,将处理机分配给它,使它立即执行并一直执行到完成,或发生某事件而被阻塞放弃处理机时,再重新调度。进程首先执行的是Job1,该作业到9:40完成,此时Job2和Job3在等待队列中,按照短作业调度算法,此时执行Job3。Job3在10:10,此时等待队列中有Job2和Job4作业,此时执行Job4,最后执行Job2。正确答案为选项B。