电脑开机后,屏幕上先后出现了“Device error”和“Non—System disk or disk error,Replace and strike any key when ready”等提示信息,无法正常启动,可能的故障原因是(14)。
A.硬盘数据线连接错误
B.CMOS中的硬盘类型设置参数丢失
C.硬盘被烧坏
D.硬盘中的系统引导文件被破坏
第1题:
YouareworkingasaDBAinanorganization.Theflashrecoveryareafilesarecreatedin’+disk1’.Youwanttocreatenewflashrecoveryareafilesinthe’+disk2’location.Thenewlocationoftheflashrecoveryareafilesshouldbewritteninthecontrolfileandthespfile.Whichcommandwillyouissuetochangethelocationoftheflashrecoveryareafiles?()
A.ALTERSYSTEMSETDB_RECOVERY_FILE_DEST=’+disk2’;
B.ALTERSYSTEMSETDB_RECOVER_FILE_DEST=’+disk2’SCOPE=BOTH;
C.ALTERSYSTEMSETDB_CREATE_FILE_DEST=’+disk2’;
D.ALTERSYSTEMSETDB_CREATE_ONLINE_LOG_DEST_n=’+disk2’;
第2题:
123、下列()患者电脑验光时屏幕上可能显示“ERROR”。
A.不规则散光
B.内眦赘皮
C.外斜视
D.内斜视
第3题:
4、()时电脑屏幕上可能显示“ERROR”.
A.不规则散光
B.内眦赘皮
C.外斜视
D.内斜视
第4题:
下列()患者电脑验光时屏幕上可能显示“ERROR”。
A.不规则散光
B.内眦赘皮
C.外斜视
D.内斜视
第5题:
下面这段程序的输出结果是error。这种说法对吗? public void compute(){ try{ System.out.println(3/0); } catch(Exception e){ System.out.println('error'); } finally{ System.out.println('final'); } }