While explaining to a customer the fault tolerant benefits of x445 they ask what happens if they implement memory mirroring and a DIMM fails in the SMP expansion module.  Which of the following is the most appropriate response?()A、The DIMM is taken off li

题目

While explaining to a customer the fault tolerant benefits of x445 they ask what happens if they implement memory mirroring and a DIMM fails in the SMP expansion module.  Which of the following is the most appropriate response?()

  • A、The DIMM is taken off line, and fault tolerance is available on the other DIMMs only.
  • B、The memory bank is taken offline and rebuilt with the online hot spare and then brought back on line.
  • C、The memory bank containing the failed DIMM is taken off line, and the system is no longer fault tolerant until replaced.
  • D、The DIMM is taken offline, and the online hot spare is initiated and the system remains fault tolerant.

相似考题
更多“While explaining to&”相关问题
  • 第1题:

    下面关于do-while语句和while语句说法的是()。

    A、while语句和do-while语句肯定都要执行

    B、两者运行结果不同

    C、do-while在判断条件之前先执行循环体一次

    D、while语句至少执行一次


    参考答案:C

  • 第2题:

    以下哪个while循环判定式最有可能是因为程序员失误而写出的代码()。

    A.while(x<=7)

    B.while(x=7)

    C.while(x<7)

    D.while(x!=7)


    正确答案:B

  • 第3题:

    在c语言中while循环和do-while循环的主要区别是()

    A.do-while循环体内可以使用break语句,while循环体内不能使用break语句

    B.do-while的循环体至少无条件执行一次,while的循环体不是

    C.do-while循环体可以使用continue语句,while循环体内不能使用continue语句

    D.while的循环体至少无条件执行一次,do-while的循环体不是


    参考答案:B

  • 第4题:

    下列写法中等价的是( )。

    A.若x=1,while(x!=x)与while(x)

    B.若x=0,while(x!=x)与while(x)

    C.若x=1,while(x!=0)与while(!x)

    D.若x=0,while(x==0)与while(x)


    正确答案:B
    解析:该题是把x的值分别代入两个while的表达式中,比较它们的表达式值是否相同。

  • 第5题:

    Stephen Hawking has spent around ten years explaining the secrets of

    A.Right
    B.Wrong
    C.Not mentioned

    答案:C
    解析:

  • 第6题:

    while(a)等价于() 

    • A、while(a=0)
    • B、while(a==0)
    • C、while(!a)
    • D、while(a!=0)

    正确答案:D

  • 第7题:

    下面关于while及do-while说法中,描述正确的是()

    • A、while与do..while没有区别
    • B、while是先执行后判断
    • C、do..while是先判断后执行
    • D、while是先判断后执行,条件为真时执行

    正确答案:D

  • 第8题:

    下面关于程序中使用while描述正确的是()。

    • A、while结构中可以嵌入if结构
    • B、while结构中可以嵌入switch结构
    • C、while结构中不能嵌入选择结构
    • D、if选择结构中可以包含循环结构while

    正确答案:A,B,D

  • 第9题:

    下列循环语句中有语法错误的是()。

    • A、while(x=y)5;
    • B、while(0);
    • C、doprintf(“%d”,a);while(a--);
    • D、dox++while(x==10);

    正确答案:D

  • 第10题:

    单选题
    He welcomed the new students and then went on to explaining the college rules.
    A

    welcomed

    B

    new students

    C

    to explaining

    D

    rules


    正确答案: C
    解析:

  • 第11题:

    单选题
    While explaining to a customer the fault tolerant benefits of x445 they ask what happens if they implement memory mirroring and a DIMM fails in the SMP expansion module.  Which of the following is the most appropriate response?()
    A

    The DIMM is taken off line, and fault tolerance is available on the other DIMMs only.

    B

    The memory bank is taken offline and rebuilt with the online hot spare and then brought back on line.

    C

    The memory bank containing the failed DIMM is taken off line, and the system is no longer fault tolerant until replaced.

    D

    The DIMM is taken offline, and the online hot spare is initiated and the system remains fault tolerant.


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

  • 第12题:

    问答题
    Practice 1  ● You are the manager of a small factory and you have received this email from Ms. Spinks, Director of Sales at Twining Electricals.  ●Write a reply email  ● apologizing for the delay  ● explaining why the delivery was held up and why she has not been able to contact you  ● explaining how she will get the order in time  ● offering a small compensation for the delay  ●Write 60-80 words.  ●Write on your Answer Sheet.

    正确答案: 【参考范文】
    Dear Ms. Spinks,
    Thank you for writing an email concerning the missing delivery. I must apologize to you for the inconvenience caused by the delay. I have investigated the matter, and found out that a dockers’ strike at the port led to the delay. This morning we went to the port to negotiate with the dockers’ union for a quick loading, which is the reason why you were unable to get in touch with us. I must give you my apology for any inconvenience.
    I am happy to inform you that the dockers have agreed to ship the goods of your order and the ship may start sailing this afternoon so that it will reach your city in two days as soon as possible. In order to compensate for the delay, we are willing to offer you a 15% discount of the charge for your order.
    We look forward to receiving more orders from your company in the near future.
    Yours sincerely,David Bentley
    General Manager
    解析: 暂无解析

  • 第13题:

    The general manager of the hotel makes a point of explaining ( ) to all new hands.

    A. hotel's tariff

    B. hotel's culture

    C. hotel's income

    D. business concept


    正确答案:BD

  • 第14题:

    与以下程序段等价的是( ) while (a) { if (b) continue; C; }

    A.while(a)

    B.while(c) {if(!b) c;) {if(!b)break: c:)

    C.while?

    D.while(a) {if(b) c:) {if(b) break: c;}


    正确答案:A

  • 第15题:

    while和do-while循环的主要区别是

    A.do-while的循环体至少无条件执行一次

    B.while的循环控制条件比do-while的循环控制条件更严格

    C.do-while允许从外部转到循环体内

    D.do-while的循环体不能是复合语句


    正确答案:A
    解析:while是先判断条件再执行语句;do-while则是先执行一次语句再判断条件,从而决定是否继续再执行循环体中的语句,这正是二者主要区别。

  • 第16题:

    The idea for the new project came to Jack ______ to his study recently.

    A. while devoting

    B. while devoting himself

    C. while he was devoted

    D. while devoted


    正确答案:C
    答案为 C。当杰克正投入在研究中时,他有了建立新项目的想法。while引导时间状语,逻辑主句与主句主语不一致,因此不能省略。

  • 第17题:

    A new booklet explaining the process of course selection along with counseling services is__________ to any student interested in receiving help.

    A. potential
    B. available
    C. expressed
    D. approaching

    答案:B
    解析:
    任何需要帮助的学生都可以得到一本解释选课过程和辅导服务的小册子。8为正确答案。

  • 第18题:

    while与do-while相比较,描述正确的是()。

    • A、第一次循环条件为真,while与do-while都执行,无区别
    • B、第一次循环条件为真,while与do...while都不执行
    • C、第一次循环条件为真,while执行,do...while不执行
    • D、第一次循环条件为假,while不执行,do...while执行

    正确答案:A,D

  • 第19题:

    循环嵌套可以包含的格式有()

    • A、while循环嵌套do...while循环
    • B、for循环嵌套while循环
    • C、for循环嵌套do...while循环
    • D、for循环嵌套for环

    正确答案:A,B,C,D

  • 第20题:

    在循环结构中while循环的while()后没有分号,do-while循环的while()后一定要有一个分号。


    正确答案:正确

  • 第21题:

    下列单片机程序语句中,能有效实现无限循环的是()

    • A、while(!0);
    • B、while(0);
    • C、while(!1);
    • D、while(!2);

    正确答案:A

  • 第22题:

    问答题
    Practice 3  ● You are going to attend an international conference on HR management in Geneva soon.  ● Write a message to your assistant:  ● explaining why you will be away,  ● letting her know the dates you will be away,  ● saying what work she should do while you are away.  ● Write 30-40 words on your Answer Sheet.

    正确答案: 【参考范文】
    Sara,
    Next week I have to leave for an international conference in Geneva and I will stay there for 3 days, so you will see me by next Thursday.
    I would like you to arrange the training session which has been decided to hold next Tuesday morning. And I will be delighted to see the training report when I come back.
    Mary Barton
    HR Manager
    解析: 暂无解析

  • 第23题:

    单选题
    64 A screaming   B explaining    C approving         D weeping
    A

    A

    B

    B

    C

    C

    D

    D


    正确答案: A
    解析: