网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
Which command should an administrator use to put a system in maintenance mode without rebooting?()

A.init 0

B.telinit m

C.shutdown -FM

D.sh /etc/rc.maint


参考答案

更多 “ Which command should an administrator use to put a system in maintenance mode without rebooting?() A.init 0B.telinit mC.shutdown -FMD.sh /etc/rc.maint ” 相关考题
考题 ()that happen,what()we do? A、If…shallB、Suppose…shallC、Should…wouldD、Had…should

考题 Close your books and( )them__________. A.put...offB.put...onC.put ...downD.put...away

考题 你在创建一个mobile Web 应用。你需要用一个Command 控件去提交用户从UI输入的内容到服务器端。下面哪两个方法可以达到此目的?() A. 在System.Web.UI.MobileControls.SelectionList 控件的实例中增加Command控件。.B. 在System.Web.UI.MobileControls.ObjectList 控件的实例中增加Command控件。C. 在System.Web.UI.MobileControls.Form 控件的实例中增加Command控件。D. 在System.Web.UI.MobileControls.Panel 控件的实例中增加Command控件。

考题 给定如下Java程序代码片段,编译运行这段代码,结果是( )。java.util.HashMapmap=newjava.util.HashMap();map.put("name",null);map.put("name","Jack");System.out.println(map.get("name"));A.nullB.JackC.nullJackD.运行时出现异常

考题 Windows 系统中,在"运行"对话框中键入(),可出现下图所示界面。Microsoft Windows [版本 6.1.7601]Copyright (C) 2009 Microsoft Corp.All righs reservedC:\Documents and Settings\Administrator>A.run B.cmd C.msconfig D.command

考题 Windows 系统中,在“运行”对话框中键入( ),可出现下图所示界面。 Microsoft Windows [版本 6.1.7601] Copyright (C) 2009 Microsoft Corp.All righs reserved C:\Documents and Settings\Administrator>A.run B.cmd C.msconfig D.command

考题 Windows 系统中,在“运行”对话框中键入(),可出现下图所示界面。Microsoft Windows [版本 6.1.7601]Copyright (C) 2009 Microsoft Corp.All righs reservedC:\Documents and Settings\Administrator>A.run B.cmd C.msconfig D.commanD.

考题 使用snmptuil.exe 可以查看代理的 MiB对象,下列文本框内oid部分是( ).C:\ Users\Administrator> snmptuil get 192.168.1.31 public.1.3.6.1.2.1.1.3.0Variable=system.sysUpTime.0Value=TimeTicks 1268830A.192.168.1.31 B.1.3.6.1.2.1.1.3.0 C.system.sysUpTime.0 D.TimeTicks 1268803

考题 下面的代码用于输出字符数组ch中每个字符出现的次数,应该填入的代码是()public static void main(String[] args) { char[] ch = { 'a', 'c', 'a', 'b', 'c', 'b' }; HashMap map = new HashMap(); for (int i = 0; i < ch.length; i++) { < 填入代码 > } System.out.println(map); }A.if (map.contains(ch[i])) { map.put(ch[i], map.get(ch[i]) + 1); } else { map.put(ch[i], 1); }B.if (map.contains(ch[i])) { map.put(ch[i], (Integer) map.get(ch[i]) + 1); } else { map.put(ch[i], 1); }C.if (map.containsKey(ch[i])) { map.put(ch[i], (int) map.get(ch[i]) + 1); } else { map.put(ch[i], 1); }D.if (map.containsKey(ch[i])) { map.put(ch[i], (Integer) map.get(ch[i]) + 1); } else { map.put(ch[i], 1); }

考题 给定如下Java 程序代码片段,编译运行这段代码,结果是 java.util.HashMap map = new java.util.HashMap(); map.put("name",null); map.put("name","Jack"); System.out.println(map.get("name"));A.nullB.JackC.nullJackD.运行时出现异常