What if my auto-repair man devised questions ___________ an intelligence test?A. withB. forC. toD. at

题目
What if my auto-repair man devised questions ___________ an intelligence test?

A. with

B. for

C. to

D. at


相似考题
更多“What if my auto-repair man devised questions ___________ an intelligence test? ”相关问题
  • 第1题:

    在Visual FoxPro中有如下程序: *程序名:TEST.PRG *调用方法:DO TEST SET TALK OFF CLOSE ALL CLEAR ALL mX="Visual FoxPro" mY="二级" DO SUB1 WITH mX ?mY+mX RETURN *子程序:SUB1.PRG PROCEDURE SUB1 PARAMETERS mX1 LOCAL mX mX=“Visual FoxPro DBMS考试” mY=“算机等级”+mY RETURN 执行命令DO TEST后,屏幕的显示结果为

    A.二级Visual FoxPro

    B.计算机等级二级Visual FoxPro DBMS考试

    C.二级Visual FoxPro DBMS考试

    D.计算机等级二级Visual FoxPro


    正确答案:D
    解析:题目中的主程序TEST调用了子程序SUB1,调用过程中传递给子程序SUB1一个参数mX,由于在子程序SUB1中mX被定义为一个局部变量,其作用域只是在SUB1中有效,所以SUB1中的变量mX的值不会影响到主程序中TEST程序中的 mX,值发生改变的只是变量mY。子程序SUB1执行完毕后变量mY和mX值分别为“计算机等级二级”和“Visual FoxPro”。主程序最后利用“+”运算符将两个变量My和mX顺序连接,其结果为“计算机等级二级Visual FoxPro”。

  • 第2题:

    Questions 9~11 refer to the following information.
    The daily changes of the market can lead investors astray. The ups and downs make the tendency to look at the portfolio’s performance frequently too tempting. This means investors are likely to perceive more risk, forgetting about their long term goals.
    When investors log into their trading accounts they can see the potential gain or loss of all of their assets. They can also see the day change on assets which are coded gain and loss. However, it's believed that those who look less get more.
    For instance, if you look at FTSE index from today to tomorrow there is a roughly 50% chance that it has gone up or down. If you look at it over a year you may find that 60%-65% of the time it is going up. And if you look over a five-year period you will find that 90% of the time it goes up.

    What’s the author’s suggestion to investors?

    A. Keep themselves from checking their trading accounts.
    B. Pay attention to long-term interests rather than short-term ones.
    C. Avoid risks in terms of their investment plans.
    D. Stick to one portfolio for at least five years.

    答案:B
    解析:
    题干问作者对投资者的建议是什么。纵观全文可知作者建议投资者不要每天都关注自己的账户走势,应看长远利益,故选B 项。

  • 第3题:

    针对以下的函数,那个函数调用不正确? def foo(arg1, arg2='test', arg3=100): print arg1, arg2, arg3

    A.foo('where')

    B.foo(arg2 = 'what', 10)

    C.foo(arg1 = 'where', arg2 = 'what')

    D.foo('where','what')


    joke[a]

  • 第4题:

    A new computer system has been designed to stop ships sinking.The greater danger to holed vessel is that flooding of its compartments will make the ship unstable enough to capsize.It is estimated that nearly half the ships lost during the second world war capsized because of loss of sability.Pacer Systems of Burlington.Massachusetts,has now reineda system( )by a reserve US Navy officer,Stephen Drabouski,which effectively thought out alternative strategies for the ship.

    A.owned
    B.searched
    C.captured
    D.devised

    答案:D
    解析:
    帕塞计算机加以改进的,并非是德拉布斯基所拥有(own)、所调查(searched)和所获(captured)的计算机,而是他所设计(devise)的计算机,故选[D]。

  • 第5题:

    Questions 95-98 refer to the following advertisement.
    As the number of new infections and deaths rise in the Ebola outbreak, fear and suspicion in rising, too, making a more difficult for health care workers to get the sick into hospitals, even as increasingly angry crowds are calling for more government action.
    The growing chaos caused by this current Ebola outbreak, which is already the worst on record with more than 1,300 infected and 700 dead in three countries in West Africa, was witnessed in a low income community in the Bushrod Island area of Monrovia.
    The community members had called the Health
    Ministry to come pick up the body of a man who had been dead in his home since Thursday. Late Friday or early Saturday, a woman had died in the same neighborhood, and she was also still in her home. Both were suspected Ebola deaths, and the protesters were saying that the government should remove them.
    A man in the crowd said that since they called the government on Thursday, workers had come to examine the scene, but they had not returned. He said that if the government did not respond to the request of community members to remove the bodies, there would be serious consequences.

    What’s the writing background of the passage?

    A. Active response of the government.
    B. Inadequate health care.
    C. More and more recovery cases
    D. Ebola outbreak.

    答案:D
    解析:
    推断题。通读全文,发现反复提及Ebola outbreak/death 这样的高频词,所以可知这篇文章就是围绕埃博拉病毒这一情况展开说明的。故选D。

  • 第6题:

    针对以下的函数,正确的函数调用有哪些? def foo(arg1, arg2='test', arg3=100): print arg1, arg2, arg3

    A.foo('where','what')

    B.foo('where')

    C.foo(arg1 = 'where', arg2 = 'what')

    D.foo(arg2 = 'what', 10)

    E.foo(arg = 'where')


    foo(arg1 = 'where', arg2 = 'what');foo('where',arg3=10);foo('where')