A.Extendvg to include both disks in the rootvg
B.Copy the hd5 logical volume to hdisk1
C.Run the bosboot and bootlist commands
D.Reset the dump device to /dev/sysdumpnull
第1题:
A、Disk、Operating、System
B、Daily、Operating、System
C、Disk、Open、System
D、Date、Open、System
第2题:
Boot.ini文件的操作系统部分,() 表示SCSI总线号。
A.Rdisk(0)
B.Disk(0)
C.Partition(3)
D.Partition(0)
第3题:
AsystemadministratorwillbemigratingaserverfromAIX5.1toAIX5.2andisuncertainiftheapplicationrunningontheserverwillfunctionproperlyafterthemigration.WhatisthefastestwaytoreturntothepreviousAIXleveliftheapplicationdoesnotwork?()
A.UsebasemediatorestoresystemtoAIX5.1.
B.Useanalt_disk_installandbootbacktotheAIX5.1rootvg.
C.MakeamksysboftheoriginalAIXtorestorebacktotheAIX5.1level.
D.PerformtheAIX5.2upgradeusingupdate_allwiththecommitoptionandrejectfilesetstoreturntoAIX5.1.
第4题:
2给出下面代码段,x处于( )范围时打印字符串“second”。 pubhc class forLoopStatement{ public static voidmain(String[]args){ int x=______;//给x赋值 if(x>0) {System.out.println("second"); } else if(x>-3) {System.out.println("second"); } else { System.out.printlnCthird"); } } }
A.x>0
B.x>-3
C.x<=-3
D.x<=0 & x>-3
第5题:
下列代码中 if(x>O){System.out.println("first");} elseif(x>-3){System.out.println("second");) else{System.out.println("third");) 要求打印字符串为“second”时,X的取值范围是( )。
A.x<=0且x>-3
B.x>0
C.x>-3
D.x<=-3
第6题:
给出下列代码片段: if(x>0){System.out.println("first");} else if(x>-3){System.out.println("second");} else{System.out.println("third");} 当x处于( )范围时打印字符串"second"。
A.x>0
B.x>-3
C.-3<x<=0
D.x<=-3