IBM认证考试

A new LPAR has been created that needs SAN attached disk for a database. After AIX has been installed, the fibre cables are attached to the adapters. How should the administrator configure the disks?()A、Run 'mkdev' to force the FC adapter to log into the

题目

A new LPAR has been created that needs SAN attached disk for a database. After AIX has been installed, the fibre cables are attached to the adapters. How should the administrator configure the disks?()

  • A、Run 'mkdev' to force the FC adapter to log into the SAN, have the SAN LUNs zoned to the server, run 'cfgmgr' to discover and configure the disks.
  • B、Run 'mkpath' to force the FC adapter to log into the SAN, have the SAN LUNs zoned to the server, run 'cfgmgr' to discover and configure the disks.
  • C、Run 'chpath' to force the FC adapter to log into the SAN, have the SAN LUNs zoned to the server, run 'cfgmgr' to discover and configure the disks.
  • D、Run 'cfgmgr' to force the FC adapter to log into the SAN, have the SAN LUNs zoned to the server, run 'cfgmgr' to discover and configure the disks.
如果没有搜索结果,请直接 联系老师 获取答案。
如果没有搜索结果,请直接 联系老师 获取答案。
相似问题和答案

第1题:

What is the outcome of this block of code?()

A. It creates a task and workload, and executes the task.

B. It creates a task and workload but does not execute the task.

C. It produces an error because a template has not been created.

D. It produces an error because the SQL Tuning Set has not been created.


参考答案:A

第2题:

下面程序段的输出结果是( )。

A.t has been created.

B.t has been created. t is running.

C.t is running.

D.编译出错


正确答案:B
start()方法就可以启动该线程,线程也就处于可运行状态Runnable。Start()方法产生了线程运行需要的系统资源,并调用线程体,也就是run()方法,使得线程可以进入运行状态。程序运行时首先创建-个新的线程对象t,并调用display()utput(Strings)方法输出thasbeencreated。t.start()方法调用run()方法,输出tisrunning,所以正确答案为选项B。

第3题:

下面程序段的输出结果是______。 class Test{ public static void main(String args[ ]){ MyThread t=new MyThread( ); t.displayOutput("t has been created"); t.start( ); } } class MyThread extends Thread{ public void display Output(String s){ System.out,println(s); } public void run( ){ displayOutput("t is running"); } }

A.t has been created t is running

B.t has been created

C.t is running

D.编译错误


正确答案:A
解析: 创建一个新的主线程对象后,通过使用start( )方法就可以启动此线程,线程就处于可运行状态Runnable。程序运行时,首先创建一个线程对象t,并调用displayOutput(Strings)方法输出“t has been created”。t.start( )方法调用run( )方法,输出“t is running”,所以正确答案为A。

第4题:

Construction on a new wing at the Markunas Museum ____as soon as additional funding has been arranged.

A.has been resumed
B.to be resuming
C.was resumed
D.will resume

答案:D
解析:
四个选项是动词resume的几种时态和语态。A选项为现在完成时的被动语态;B选项为动词不定式,不能单独做谓语;C选项为过去式的被动语态;D选项为一般将来时。题目意为“建造马昆那博物馆的新翼在额外的资金被安排后___。”as soon as引导的状语从句中的时态是现在完成时,主句的时态不能发生在它之前,且resume一般不用于被动语态,因此选D。
  

第5题:

下面程序段的输出结果是 classTest{ public static void main(Stringargs[]){ MyThread t=new MyThread(); t.displayOutput(”t has been createD) ”); t.start(); } } Class MyThread extends Thread{ public void displayOutput(Strings){ System.out.println(S); } public void run(){ displayOutput(”t is running.”); } }

A.thas been created. t is running.

B.thas been created

C.t is running.

D.编译出错


正确答案:A
解析:本题考查线程的创建和调用。创建一个新的线程对象后,通过使用start()方法就可以启动该线程,线程也就处于可运行状态Runnable。Start()方法产生了线程运行需要的系统资源,并调用线程体,也就是run()方法,使得线程可以进入运行状态。程序运行时首先创建一个新的线程对象t,并调用displayOutput(Strings)方法输出thas been created。t.start()方法调用run()方法,输出t is running,所以正确答案为选项A。

第6题:

Given that the current directory is empty, and that the user has read and write privileges to the current, and the following:Which statement is true?()

A.Compilation fails.

B.Nothing is added to the file system.

C.Only a new file is created on the file system.

D.Only a new directory is created on the file system.

E.Both a new file and a new directory are created on the file system.


参考答案:B

第7题:

下面程序段的输出结果是 class Test{ public static void main(String args[]){ MyThread t=new MyThread(); t.displayOutput("t has been created)); t.start(); } } class MyThread extends Thread{ public void displayOutput(String s){ System.out.println(s); } public void run(){ displayOutput(t is running."); } }

A.t has been created.

B.t has been created. t is running.

C.t is running.

D.编译出错


正确答案:A
解析:本题考查线程的创建和调用。创建一个新的线程对象后,通过使用 start()方法就可以启动该线程,线程也就处于可运行状态Runnable。Start()方法产生了线程运行需要的系统资源,并调用线程体,也就是run()方法,使得线程可以进入运行状态。程序运行时首先创建一个新的线程对象t,并调用displayOutput(Strings)方法输出t has been created。t.start()方法调用run()方法,输出t is running,所以正确答案为选项A。

第8题:

下面程序段的输出结果是( )。 class Test{ public s,tatic void main(String args[]){ MyThread t=new MyThread; displayOutput("t has been createD"); start; } } Class MyThread extends Thread{ public void displayOutput(String s){ System.out.println(s); } public void run{ displayOutput("t is running."); } }

A. t has been created.

B.t has been created. t is running.

C.t is running.

D.编译出错


正确答案:B
B。【解析】start方法就可以启动该线程,线程也就处于可运行状态Runnable。Start方法产生了线程运行需要的系统资源,并调用线程体,也就是run方法,使得线程可以进入运行状态。程序运行时首先创建一个新的线程对象t,并调用displayOutput(Strings)方法输出thasbeencreated。t.start方法调用run方法,输出tisrunning,所以正确答案为选项B。

第9题:

3下碳程序段的输出结果是( )。 class Test{ public static void main(Srting args[]){ MyThread t=new MyThread(); t.displayOutput("t has been created"); t.start(); } } class MyThread extends Thread{ public void displayOutput(String s){ SYStem.out.println(s); } public void run() { displayOutput("t is running."); } }

A.t has been created.

B.t has been created. t is running.

C.t is running.

D.编译出错


正确答案:A

第10题:

By next year he()in New York for five years.

  • A、has worked
  • B、has been working
  • C、works
  • D、will have worked

正确答案:D

更多相关问题