A system administrator is preparing to run a preservation install and would like to use and hdisk that was no longer needed in datavg. Which of the following processes should be used to make it available for configuration?()
A.chdeb -1 hdiskxxx -a pv=clear; chdev -1 hdiskxx -a pv=yes
B.exportvg datavg; importvg -y rootvg hdiskxx
C.rmdev -1 hdiskxxx; mkdev -1 hdiskxxx -a pv=avail
D.reducevg datavg hdiskxxx; extendvg rootvg hdiskxxx
第1题:
Inanisolatedtestenvironment,youdeployaservernamedServer1thatrunsaServerCoreInstallationofWindowsServer2012R2.ThetestenvironmentdoesnothaveActiveDirectoryDomainServices(ADDS)installed.YouinstalltheActiveDirectoryDomainServicesserverroleonServer1.YouneedtoconfigureServer1asadomaincontroller.Whichcmdletshouldyourun?()
A.Install-ADDSDomainController
B.Install-ADDSDomatn
C.Install-ADDSForest
D.Install-WindowsFeature
第2题:
第3题:
关于os库,以下选项中可以启动进程执行程序的函数是:
A.os.run()
B.os.start()
C.os.process()
D.os.system()
第4题:
Your network consists of a single Active Directory domain. The functional level of the domain is Windows Server 2003. All servers run Windows Server 2003 Service Pack 2 (SP2). The network contains 10 file servers. Each file server hosts a share named Apps.On each file server, a local group named App-install-local has permissions to the Apps share. A global group named App-install-global belongs to the App-install-local group on each file server. App-install-global is used only to control permissions for the Apps share.You create a global group named Helpdesk.You need to provide the Helpdesk group access to the Apps share on each file server. The Helpdesk group must have the same permissions as the App-install-global group. You must achieve this goal by using the minimum amount of administrative effort.What should you do? ()
A. Add the Helpdesk group to the App-install-global group.
B. Add the Helpdesk group to the App-install-local group on each file server.
C. Convert the App-install-global group to a universal group. Add the App-install-global group to the Helpdesk group.
D. Convert the Helpdesk group to a universal group. Add the Helpdesk group to the App-install-local group on each file server.
第5题:
当编译并运行下面程序时会发生什么结果() public class Bground extends Thread{ public static void main(String argv[]){ Bground b = new Bground(); b.run(); } public void start(){ for (int i = 0; i <10; i++){ System.out.println("Value of i = " + i); } } }
A.编译错误,指明run方法没有定义
B.运行错误,指明run方法没有定义
C.编译通过并输出0到9
D.编译通过但无输出
第6题:
在R语言中,安装名为“dplyr”的软件包,所需的命令为()。
A.install.packages(“dplyr”)
B.install.package(“dplyr”)
C.install.package(dplyr)
D.install.packages(dplyr)