A.unmirrorvg datavg hdisk7 reducevg datavg hdisk7 replace the physical volume, run cfgmgr extendvg datavg hdisk7 mirrovg datavg hdisk7
B.varyoffvg datavg Rmdev -l hdisk7 -d Replace the physical volu,e run cfgmgr The system will automatically remirror when the disk is replaced
C.unmirrorvg datavg hdisk7 rmdev -l hdisk7 - d replace the physical volume, run cfgmgr extendvg datavg hdisk7 The system will automatically remirror when the disk is replaced.
D.unmirrorvg datavg hdisk7 reducevg data hdisk7 rmdev -l hdisk7 -d replace the physical volume, run cfgmgr extendvg datavg hdisk7 mirrovg datavg
第1题:
下面程序的输出结果是( )。 public class Sun { public static void main(String args[ ]) { int i = 1; switch (i) { case 0: System.out.println("zero"); break; case 1: System.out.println("one"); case 2; System.out.println("two"); default: System.out.println("default"); } } }
A.one
B.one,default
C.one,two,default
D.default
第2题:
When William hurried home, he found that his mother ____already ____to hospital.
A、has; been sent
B、had; sent
C、has; sent
D、had; been sent
第3题:
下面程序的输出结果是( )。 public class Sun { public static void main(String args[ ]) { int i = 1; switch (i) { case 0: System.but.println("zero"); break; case 1: System.out.println("one"); case 2: System.out.println("two"); default: System.out.println ("default"); } } }
A.one
B.one, default
C.one, two, default
D.default
第4题:
A. has; seen
B. has; see
C. had; seen
第5题:
A. his
B. one's
C. my
D. their
第6题:
编译和执行以下代码,输出结果是( )。 int i=1; switch (i) { case 0: System.out.print("zero,"); break; case 1: System.out.print("one,"); case 2: System.out.print("two,"); default: System.out.println("default"); }
A.one,
B.one,two,
C.one,two,default
D.default