A system was rebooted and is taking a long time to return. The administrator has logged into the HMC and sees reference code 0c9. What does this mean()? A、The system is configuring a device.B、A system initiated dump has started.C、The system is varyingon a volume group.D、The system is running an inbuilt self test.

A system was rebooted and is taking a long time to return. The administrator has logged into the HMC and sees reference code 0c9. What does this mean()? 

  • A、The system is configuring a device.
  • B、A system initiated dump has started.
  • C、The system is varyingon a volume group.
  • D、The system is running an inbuilt self test.

相关考题:

执行下面程序后输出的正确结果是 public class Test{ public static void main(String args[]){ byte x=3,y=4; long r=80L; System.out.print(r/y); System.out.print(","); System.out.print(x/y); } }A.20.0,1B.20.0,1.0C.20,0D.20,1.0

YourcompanyhasaserverthatrunsWindowsServer2008R2.ActiveDirectoryCertificateServices(ADCS)isconfiguredasastandaloneCertificationAuthority(CA)ontheserver.YouneedtoauditchangestotheCAconfigurationsettingsandtheCAsecuritysettings.Whichtwotasksshouldyouperform()A.ConfigureauditingintheCertificationAuthoritysnap-in.B.Enableauditingofsuccessfulandfailedattemptstochangepermissionsonfilesinthe%SYSTEM32%\CertSrvdireC.Enableauditingofsuccessfulandfailedattemptstowritetofilesinthe%SYSTEM32%\CertLogdirectory.D.EnabletheAuditobjectaccesssettingintheLocalSecurityPolicyfortheActiveDirectoryCertificateServices

publicstaticvoidtest(Stringstr){intcheck=4;if(check=str.length()){System.out.print(str.charAt(check-=1)+,);}else{System.out.print(str.charAt(0)+,);}}andtheinvocation:test(”four”);test(”tee”);test(”to”);Whatistheresult?()A.r,t,t,B.r,e,o,C.Compilationfails.D.Anexceptionisthrownatruntime.

Runnabler=newRunnable(){publicvoidrun(){System.out.print(”Cat”);}};Threadt=newThread(r){publicvoidrun(){System.out.print(”Dog”);}};t.start();Whatistheresult?() A.CatB.DogC.Compilationfails.D.Thecoderunswithnooutput.E.Anexceptionisthrownatruntime.

下列程序执行的结果是______。 public class ex6 { public static void main(String[] args) { char ch='8'; int r=10; switch(ch+l) { case '7': r=r+3; case '8': r=r+5; case '9': r=r+6; break; default: ; } System.out.print(r); } }A.14B.13C.16D.10

An administrator tries to change the checksum_offload setting on ent0, but the chdev command responds that the adapter is busy.What can be done to resolve this?() A.Use chdev with -P flag and run cfgmgr.B.Use chdev with -R flag and run cfgmgr.C.Use chdev with -P flag and reboot the system.D.Use chdev with -R flag and reboot the system.

The system administrator has requested that all setuid/setgid bits be removed from executables in application filesystem. Which command will achieve this?() A. chmod -R o-s /applicationB. chmod -R ug-s /applicationC. chmod -R -s -o /applicationD. chmod -R -s -ug /application

Refer to the exhibit. Network 10.0.0.0/8 is being advertised to autonomous system 65550 via both external links. Which statement about the preferred path to the 10.0.0.0/8 network is true? () A. Router R2 will be preferred because it has the higher neighbor IP address.B. Router R2 will be preferr ed because its neighbor has a lower autonomous system number.C. Router R1 will be preferred because it has a lower local preference.D. Router R2 will be preferred because it has a higher local preference.E. Router R1 will be preferred because its nei ghbor has the higher autonomous system number.F. Router R1 will be preferred because it has the lower neighbor IP address.

Refer to the exhibit. Autonomous systems 200 and 300 have EBGP sessions established with their directly connected routers in au tonomous system 100. IGP has been configured on all routers in autonomous system 100 and they successfully exchange routing updates. Traffic originated in autonomous system 200 cannot reach the destination autonomous system 300. What configuration shoul d be done on the routers in autonomous system 100 in order for the traffic coming from autonomous system 200 to be forwarded to autonomous system 300?()A. IBGP session must be established between routers R1 R2 and R2 R3, and the synchronization must be turned off.B. IBGP speakers within autonomous 100 must be fully meshed, and the synchronization must be turned on.C. IBGP session must be established between routers R1 R2 and R2 R3, and the synchronization must be turned on.D. IBGP session mu st be established between routers R1 and R3, and the synchronization must be turned off.E. IBGP speakers within autonomous 100 must be fully meshed, and the synchronization must be turned off.F. IBGP session must be established between routers R1 and R3, and the synchronization must be turned on.

The following entry is in the /etc/host.equiv and /home/jsmith/.rhosts file on server Alpha:+ jsmith.What does this entry indicate?()A、The user "jsmith" can use r-commands from any server to server Alpha system-wideB、The user "jsmith" can use r-commands from server Alpha to any server system-wideC、The user "jsmith" can use r-commands from server Alpha to any server with a /home/jsmith directoryD、The user "jsmith" can use r-commands from any server to server Alpha only in the /home/jsmith directory

A typical example of a process # 19082 in the /proc file would be:      # ls -l /proc/19082      total 0   dr-xr-xr-x  1  root system 0    Sep 15  15:12  .      dr-xr-xr-x  1  root system 0    Sept 15 15:12  ..      -rw-------  1  root system 0    Sept 15  15:12 as       -r--------  1  root system 128  Sept 15  15:12 cred      --w-------  1  root system 0    Sept 15  15:12 ctl      dr-xr-xr-x  1  root system 0    Sept 15  15:12 lwp      -r--------  1  root system 0    Sept 15  15:12 map      dr-x------  1  root system 0    Sept 15  15:12 object      -r--r--r--  1  root system 448  Sept 15  15:12 psinfo     -r--------  1  root system 1024 Sept 15  15:12 sigact      -r--------  1  root system 1520 Sept 15  15:12 status      -r--r--r--  1  root system 0    Sept 15  15:12 sysent   Writing to which of the following files will allow the owner to stop a process?()A、 statusB、 sysentC、 ctlD、 as

Runnable r = new Runnable() {  public void run() {  System.out.print(”Cat”);  }  };  Threadt=new Thread(r) {  public void run() {  System.out.print(”Dog”);  }  };  t.start();  What is the result?() A、 CatB、 DogC、 Compilation fails.D、 The code runs with no output.E、 An exception is thrown at runtime.

A system administrator completed an upgrade of the maintenance level of their AIX system. Which of the following commands should be run to verify that the operating system is in a consistent state?()A、instfix -iB、lslpp -lC、lppchk -vD、oslevel -r

Which of the following commands can be used to review the system error logs?()A、 errpt -aB、 errpt -lC、 errdemon -lD、 syslogd -r

Which command should the administrator use to display the IPL progress/LED code of the partition?()A、lsled -m System -r lpar B、lsrefcode -m System -r lpar C、lshwinfo -m System -r led_code D、lssyscfg -m System -r sys -F lpar_name,led_code

A system administrator would like to set a system to reboot after a crash.  What is the best way to do this?()A、 smit chgsysB、 bosbootC、 smit dumpD、 bootlist -r

An administrator tries to change the checksum_offload setting on ent0, but the chdev command responds that the adapter is busy. What can be done to resolve this?()A、Use chdev with -P flag and run cfgmgr.B、Use chdev with -R flag and run cfgmgr.C、Use chdev with -P flag and reboot the system.D、Use chdev with -R flag and reboot the system.

You need to recommend an operating system for Node1 and Node2. The recommendation must meet  the company’s technical requirements.Which operating system image should you install?()A、a full installation of Windows Server 2008 R2 EnterpriseB、a full installation of Windows Server 2008 R2 StandardC、a Server Core installation of Windows Server 2008 R2 EnterpriseD、a Server Core installation of Windows Server 2008 R2 Standard

单选题A system administrator would like to set a system to reboot after a crash.  What is the best way to do this?()A smit chgsysB bosbootC smit dumpD bootlist -r

单选题You need to identify which operating system must be installed on the Hyper-V server in the new branch office. Which operating system should you identify?()Aa Server Core installation of Windows Server 2008 R2 EnterpriseBa Server Core installation of Windows Server 2008 R2 StandardCWindows Server 2008 R2 EnterpriseDWindows Server 2008 R2 Standard

单选题Your network includes Windows Server 2008 R2 Hyper-V servers. Each Hyper-V server runs multiple virtual machines (VMs). You need to detect performance issues and generate an alert when Hyper-V server load exceeds specific thresholds.  Which tool should you use?()AMicrosoft System Center Capacity Planner 2007BMicrosoft System Center Operations Manager 2007 R2CMicrosoft System Center Configuration Manager 2007 R2DMicrosoft System Center Virtual Machine Manager 2008 R2

单选题A typical example of a process # 19082 in the /proc file would be:      # ls -l /proc/19082      total 0   dr-xr-xr-x  1  root system 0    Sep 15  15:12  .      dr-xr-xr-x  1  root system 0    Sept 15 15:12  ..      -rw-------  1  root system 0    Sept 15  15:12 as       -r--------  1  root system 128  Sept 15  15:12 cred      --w-------  1  root system 0    Sept 15  15:12 ctl      dr-xr-xr-x  1  root system 0    Sept 15  15:12 lwp      -r--------  1  root system 0    Sept 15  15:12 map      dr-x------  1  root system 0    Sept 15  15:12 object      -r--r--r--  1  root system 448  Sept 15  15:12 psinfo     -r--------  1  root system 1024 Sept 15  15:12 sigact      -r--------  1  root system 1520 Sept 15  15:12 status      -r--r--r--  1  root system 0    Sept 15  15:12 sysent   Writing to which of the following files will allow the owner to stop a process?()A statusB sysentC ctlD as

填空题GSM-R(Global System for Mobile Communications for Railway)是指()。

单选题现有:  class Number{  public static void main(String  []  aras)  {      try  {  System.out.print (Integer.parselnt ("forty"));      } catch (RuntimeException r)  {      System.out.print ("runtime");  } catch  (NumberFormatException e)  {      system..ut.print("number");      }      }      }  结果是什么?()AnumberBruntimeCforty numberD编译失败

单选题class Number {  public static void main(String [] args) {  try {  System.out.print(Integer.parseInt("forty ")); } catch (RuntimeException r) {  System.out.print("runtime ");  } catch (NumberFormatException e) {  System.out.print("number ");  }  }  }  结果是什么?()AfortyBnumberCruntimeD编译失败

单选题You need to recommend an operating system for Node1 and Node2. The recommendation must meet  the company’s technical requirements.Which operating system image should you install?()Aa full installation of Windows Server 2008 R2 EnterpriseBa full installation of Windows Server 2008 R2 StandardCa Server Core installation of Windows Server 2008 R2 EnterpriseDa Server Core installation of Windows Server 2008 R2 Standard

单选题The system administrator has requested that all setuid/setgid bits be removed from executables in application filesystem. Which command will achieve this?()Achmod -R o-s /applicationBchmod -R ug-s /applicationCchmod -R -s -o /applicationDchmod -R -s -ug /application

单选题Runnable r = new Runnable() {  public void run() {  System.out.print(”Cat”);  }  };  Threadt=new Thread(r) {  public void run() {  System.out.print(”Dog”);  }  };  t.start();  What is the result?()A CatB DogC Compilation fails.D The code runs with no output.E An exception is thrown at runtime.