A. The Memory Advisor
B. The SQL Tuning Advisor
C. The Undo Advisor
D. The SQL Access Advisor
第1题:
A.Compilationfails.
B.Anexceptionisthrownatruntime.
C.Thecodeexecutesandprints“running”.
D.Thecodeexecutesandprints“runningrunning”.
E.Thecodeexecutesandprints“runningrunningrunning”.
第2题:
用户通过对______文件的修改,可以控制是否自动显示Window98的启动菜单。
A.Config.sys
B.AutoexeC.bat
C.Msdos.sys
D.System.ini
第3题:
Each life jacket light that has a non-replaceable power source must be replaced ______.
A.every 6 months after initial installation
B.every 12 months after initial installation
C.every 24 months after initial installation
D.on or before the expiration date of the power source
第4题:
A. LOG_HISTORY
B. JOB_LOG_RETENTION
C. WINDOW_LOG_RETENTION
D. WHICH_LOG
E. LOG_NAME
第5题:
A. Every 5 minutes
B. Every 90 seconds
C. Every 60 seconds
D. Every 30 seconds
第6题:
当编译并运行下面程序时会发生什么结果() 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.编译通过但无输出