A system powers on, begins POST

题目

A system powers on, begins POST, displays the BIOS version information and then hangs with the error message Error loading operating system. Which of the following is MOST likely cause of this issue? ()

  • A、A virus has infected the system
  • B、Corrupted BOOT.INI file
  • C、Corrupt MBR
  • D、Boot sector corruption
如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

阅读以下说明和java代码,将应填入(n)处的字句写在对应栏内。

[说明]

本程序使用类来管理员工的通讯地址信息。已知程序的输出为:

输出记录:5

姓名:王丽华

街道地址:中华路15号

市:襄樊市

省:湖北省

邮政编码:430070

[Java代码]

public class Employee{

protected String (1);

protected String street;

protected String city;

protected String prov;

protected String post;

protected int no;

public Empbyee(){}

public Employee(String name,String street,String city,String prov,String post, (2) ){

this.name=name;

this.street=street;

this.city=city;

this.prov=prov;

this.post=post;

this.no=no;

}

public static void main(String[]args){

Employee emp=new Employee(“王华”,“中华路15号”,“武汉市”,“湖北省”,“430070”,1);

emp.changeName(“王丽华”);

(3) (“襄樊市”);

emp.changeNo(5);

(4);

}

void changeName(String name){this.name=name;}

void changeStreet(String street){this.street=street;}

void changeCity(String city){this.city=city;}

void changeProv(String prov){this.prov=prov;}

void changeNo(int no){(5);}

void display(){

System.out.println(“输出记录:”+this.no);

System.out.Println(“姓名:”+this.name);

System.out.println(“街道地址:”+this.street);

System.out.println(“市:”+this.city);

System.out.println(“省:”+this.prov);

System.out.println(“邮政编码:”+this.post);

}

}


正确答案:(1) name (2) int no (3) emp.changeCity (4) emp.display() (5)this.no=no
(1) name (2) int no (3) emp.changeCity (4) emp.display() (5)this.no=no 解析:本程序创建一个employee类,包括姓名、街道地址、市、省、邮政编码和记录号等信息以及若干函数:构造函数employee()初始化每个成员;changname()、……changeno()等用于更改类中各属性的值;display()函数用于打印数据。

第2题:

A system powers on, begins POST, displays the BIOS version information and then hangs with the error message ‘Error loading operating system’. Which of the following is MOST likely the cause of this issue? ()

A. A virus has infected the system

B. Corrupted BOOT.INI file

C. Corrupt MBR

D. Boot sector corruption


参考答案:C

第3题:

请编写两个函数int sum_of_powers(int k,int n),powers(int m,int n),求1~6的k次方的和,sum_of_powers中参数k和n分别表示k次方和所求数列中最大的一个自然数,最后返回所求值,powers中参数m和n分别表示m为底数n为指数,最后返回所求值。要求使用for循环和函数嵌套(int sum_of_powers中调用powers)实现算法。输出结果如下:

sum of 4 powers of intergers from 1 to 6=2275

注意:部分源程序已存在文件test25_2.cpp中。

请勿修改主函数main和其他函数中的任何内容,仅在函数sum_of_powers和powers的花括号中填写若干语句。

文件test25_2.cpp的内容如下:

include<iostream.h>

const int k(4);

const int n(6);

int sum_of_powers(int k,int n),powers(int m,int n);

void main()

{

cout<<"sum of "<<k<<" powers Of intergers from 1 to "<<n<<"=";

cout<<sum_of_powers(k,n)<<endl;

}

int sum_of_powers(int k,int n)

{

}

int powers(int m, int n)

{

}


正确答案:(1)int sum_of_powers(int kint n) { int sum(0); for(int i=1;i=n;i++) sum+=powers(ik); return sum; } (2) int powers(int m int n) { int iproduct(1); for(i=1;i=n;i++) product*=m; return product; }
(1)int sum_of_powers(int k,int n) { int sum(0); for(int i=1;i=n;i++) sum+=powers(i,k); return sum; } (2) int powers(int m, int n) { int i,product(1); for(i=1;i=n;i++) product*=m; return product; } 解析:本题考查的是考生使用for循环和函数嵌套解决一般问题的能力。注意最后将计算的值返回。

第4题:

An administrator has just upgraded a server from non-hot plug storage to all hot plug storage. Theadministrator powers up the server, during POST the RAID controller is recognized but none of the drivelights flash.  Which of the following should the administrator do FIRST to trouble shoot the problem?()

  • A、 Check the backplane cabling.
  • B、 Check the server BIOS.
  • C、 Update the RAID controller firmware.
  • D、 Install the latest hard drive firmware.

正确答案:A

第5题:

When does language acquisition begin according to the research?

A.It begins with the birth of a baby.
B.It begins before the birth of a baby.
C.It begins when a baby starts imitating adults’ speech.
D.It begins with a baby's cry melodies typical of its mother tongue.

答案:B
解析:
细节题。根据倒数第二段中的“That acquisition,it is now clear, beginsmonths before birth,probably in the third trimester.”可知,婴儿在出生之前就开始了语言习得。故本题选B。

第6题:

When Bob, a technician, powers up a desktop PC, the unit will repeat three short beeps and will not POST. Which of the following is MOST likely the problem?()

A. The memory is failing.

B. The CPU is overheating.

C. The hard drive is not attached properly.

D. The operating system is not installed.


参考答案:A

第7题:

Which of the following is a feature of a unit of work?()

A.It applies to a single data server.

B.It is a recoverable sequence of operations.

C.Its value can be queried from the system catalog tables.

D.It begins when the application connects to the data server.


参考答案:B

第8题:

classOrderimplementsRunnable{publicvoidrun(){try{Thread.sleep(2000);}catch(Exceptione){}System.out.print("in");}publicstaticvoidmain(String[]args){Threadt=newThread(newOrder());t.start();System.out.print("pre");try{t.join();}catch(Exceptione){}System.out.print("post");}}可产生哪两项结果?()

A.inpre

B.prein

C.inprepost

D.preinpost


参考答案:C, D

第9题:

Which implement phase service component consists of preparing for migration,excuting a network migration plan,and completing migration test cases?()

  • A、staging and system migration
  • B、post implementation support handoff meeting
  • C、detailed design development
  • D、staff training
  • E、migration plan development

正确答案:A

第10题:

When Bob, a technician, powers up a desktop PC, the unit will repeat three short beeps and will not POST. Which of the following is MOST likely the problem?()

  • A、The memory is failing.
  • B、The CPU is overheating.
  • C、The hard drive is not attached properly.
  • D、The operating system is not installed.

正确答案:A

更多相关问题