An administrator is upgrading memory on the server. Once the server in turned back on, the administrator notices that the memory has not changed. The system board website says the board should accept the new amount of memory.Which of the following should

题目

An administrator is upgrading memory on the server. Once the server in turned back on, the administrator notices that the memory has not changed. The system board website says the board should accept the new amount of memory.Which of the following should the administrator do FIRST?()

A. Replace memory chips with known good memory chips.

B. Reseat the memory chips.

C. Update the BIOS.

D. Upgrade the server OS


相似考题
更多“An administrator is upgrading memory on the server. Once the server in turned back on, the ”相关问题
  • 第1题:

    ●Win2003server中启用配置SNMP服务时,必须以(66)身份登录才能完成

    SNMP服务的配置功能。

    (66) A.guest

    B.普通用户

    C.administrator组成员

    D.user组成员


    正确答案:C

  • 第2题:

    ● 在Windows 2003 Server中启用配置SNMP服务时,必须以(66)身份登录才能完成SNMP服务的配置功能。 A.guest B.普通用户 C.administrator组成员 D.user组成员


    正确答案:C
    试题66分析本题主要考查不同用户的权限。Administrator组成员就是系统管理员。即所谓的超级用户,是电脑里权限不受限制的人。Guests这个帐户没有修改系统设置和进行安装程序的权限,也没有创建修改任何文档的权限,只能是读取计算机系统信息和文件。User则是让普通用户使用的帐户。它的级别和权限是介于“Administrator”和“Guests”之间的,即是这个帐户没有修改系统设置和进行安装程序的权限,但拥有创建修改任何文档的权限。综上所述,要进行启用配置SNMP服务操作,需要是Administrator组成员。参考答案(66)C

  • 第3题:

    Win2003 Server中启用配置SNMP服务时,必须以( )身份登录才能完成SNMP服务的配置功能。

    A.guest
    B.普通用户
    C.administrator组成员
    D.user组成员

    答案:C
    解析:
    Windows Server 2003中配置SNMP服务时,必须以管理员身份或者Administrators组成员身份登录才能完成SNMP服务的配置功能。一般用户或者普通用户不能完成SNMP配置服务。

  • 第4题:

    下面是该网站中数据库连接程序conn.inc的代码,请在空白处填入相应的程序代码。

    <%

    Setcorm=server.(1)("adodb.connection")

    conn.provider="sqloledb"

    provstr="server=127.0.0.1;database=(2);uid=(3);pwd=(4)"

    conn.open(5)

    %>


    正确答案:(1)createobject (2)CJB (3)User (4)Test (5)provstr
    (1)createobject (2)CJB (3)User (4)Test (5)provstr

  • 第5题:

    某电子商务网站中数据库连接程序conn.inc的部分代码如下,请将(41)空缺处的代码填写完整。set conn=server.(41)("adodb.connection")

    A.sq1

    B.like

    C.CreateObject

    D.GetRecordSet


    正确答案:C
    解析:ASP是通过一组被称为ADO(ActiveXDataObjects)的对象模块来对后台数据库进行操作。无论后台数据库采用何种形式,只要该数据库具有对应的ODBC或OLEDB驱动程序,ADO对象就能对该数据库进行操作。Server对象提供了一系列的方法和属性,在使用ASP编写脚本时是非常有用的。最常用的是Server.CreateObject方法,它允许在当前页的环境或会话中在服务器上实例化其COM对象。ASP在存取数据库之前,先要利用Server对象的CreateObject方法来创建ADO对象模块的Connection对象以建立数据库的连接。因此(41)空缺处所填写的内容是CreateObject。

  • 第6题:

    下面是一段ASP程序,填空。  <% ’创建连接对象  Set Session("conn") = Server.CreateObject("()") ’ 打开站点目录data子目录中的student.mdb的Access数据库  Session("conn").()= "Driver={Microsoft Access Driver (*.mdb)};DBQ=" & Server. ()("./data/student.mdb") Session("conn").()   ’ 打开连接对象 ...... ’该部分为执行代码  Session("conn").Close   ’关闭数据连接对象       () ’释放连接对象  %>
    ADODB.Connection;ConnectionString;MapPath;Open;Set Session("conn") = Nothing