单选题A technician is dispatched to a system that will not go beyond the Windows XP splash screen.Which of the following, after restart, would allow the technician to load Windows XP?()APress F6, select Last Known Good Configuration, loginBPress F8, select Debug mode, loginCPress F8, select Last Known Good Configuration, loginDPress F6, select Debug mode, login

单选题
A technician is dispatched to a system that will not go beyond the Windows XP splash screen.Which of the following, after restart, would allow the technician to load Windows XP?()
A

Press F6, select Last Known Good Configuration, login

B

Press F8, select Debug mode, login

C

Press F8, select Last Known Good Configuration, login

D

Press F6, select Debug mode, login


参考解析

解析: 暂无解析

相关考题:

publicclassWow{publicstaticvoidgo(shortn){System.out.println(”short”);}publicstaticvoidgo(Shortn){System.out.println(”SHORT”);}publicstaticvoidgo(Longn){System.out.println(”LONG”);}publicstaticvoidmain(String[]args){Shorty=6;intz=7;go(y);go(z);}}Whatistheresult?()A.shortLONGB.SHORTLONGC.Compilationfails.D.Anexceptionisthrownatruntime.

A technician is dispatched to a system that will not go beyond the Windows XP splash screen.Which of the following, after restart, would allow the technician to load Windows XP?() A. Press F6, select Last Known Good Configuration, loginB. Press F8, select Debug mode, loginC. Press F8, select Last Known Good Configuration, loginD. Press F6, select Debug mode, login

A technician is dispatched to a malware infected system. Upon arrival, the technician notices themalware’s pop-up on the screen. Which of the following boot methods would the technician utilize?() A. Reboot in Safe ModeB. Reboot in Recovery ConsoleC. Reboot in Last Known Good ConfigurationD. Reboot in System Debug Mode

A technician would like to load an operating system CD on startup. Which of the following settings would a technician change in the BIOS?() A. Enable TPMB. Enable BIOS passwordC. Disable TPMD. Boot sequence

A manufacturer has instructed a technician to update the software that resides on the flash ROMchip of an integral system add-in component. Which of the following types of software needs to be updated?()A. System BIOSB. FirmwareC. OS PatchD. Driver

An uninstalled program is still attempting to load when Windows starts. Which of the following options can the technician suggest to stop this unwanted program from loading?()A、ServicesB、Add or Remove ProgramsC、System Configuration UtilityD、System File Checker

1. public class GoTest {  2. public static void main(String[] args) {  3. Sente a = new Sente(); a.go();  4. Goban b = new Goban(); b.go();  5. Stone c = new Stone(); c.go();  6. }  7. } 8.  9. class Sente implements Go {  10. public void go() { System.out.println(”go in Sente.”); }  11. }  12.  13. class Goban extends Sente {  14. public void go() { System.out.println(”go in Goban”); }  15. }  16.  17. class Stone extends Goban implements Go { }  18.  19. interface Go { public void go(); }  What is the result?() A、 go in Goban  go in Sente go in SenteB、 go in Sente  go in Sente go in GobanC、 go in Sente  go in Goban go in GobanD、 go in Goban go in Goban go in SenteE、 Compilation fails because of an error in line 17.

class BitStuff {   BitStuff go() { System.out.print("bits "); return this; }   }   class MoreBits extends BitStuff {   MoreBits go() { System.out.print("more "); return this; }   public static void main(String [] args) {   BitStuff [] bs = {new BitStuff(), new MoreBits()};   for( BitStuff b : bs)   b.go();   }   }   结果为:()  A、bits bitsB、bits moreC、more moreD、编译失败

A technician installed a new application on a Windows XP desktop. When the technician tries to launch the application it crashes. Which of the following can the technician use to troubleshoot the application?()A、System logsB、Security logsC、Application logsD、Application installation logs

In which of the following locations would a technician set the LBA mode for a hard drive?()A、Jumper SettingsB、Disk ManagerC、Device ManagerD、System BIOS

A technician is troubleshooting a user’s problem; important Windows services are not starting. In which of the following locations should the technician check to investigate when these services started or stopped?()A、Com+.logB、System LogC、Security LogD、Application Log

A server technician has been attempting to install an operating system on the company test server for several days. The technician has experienced error messages at several points of theinstallation and the system has frozen during various parts of the boot process. The technician has replaced the power supply, graphics card and installation disk with known good components.Which of the following could be causing these issues?()A、Storage driver not loadedB、Fragmented hard driveC、Damaged or faulty NIC chipsetD、Damaged or faulty system boardE、Memory incompatible with the processorF、Missing voltage regulator

A customer reports that error messages occasionally appear and quickly disappear. Which of thefollowing is the BEST place for a technician to begin troubleshooting this issue?()A、Run a System RestoreB、Check Device ManagerC、Check the Event LogsD、Check the System Information

A technician is dispatched to install additional RAM in a computer. The technician unplugs thesystem from the power source, and removes the cover of the PC. Which of the following shouldthe technician do NEXT?()A、Update the BIOS for compatibility.B、Put on an ESD strap.C、Use an anti-static bag to hold the RAM while installing.D、Clean out the PC with compressed air.

A manufacturer has instructed a technician to update the software that resides on the flash ROMchip of an integral system add-in component. Which of the following types of software needs to be updated?()A、System BIOSB、FirmwareC、OS PatchD、Driver

A technician wants to secure a Windows 7 Ultimate notebook hard drive. Which of the following should the technician do to implement BitLocker?() (Select TWO).A、Disable TPM in the system BIOSB、Run the BitLocker wizard and any necessary partitionsC、Enable TPM in the system BIOSD、Enable TPM in the Windows 7 OS filesE、Set up the OS and the system files on the same partition

A technician is troubleshooting a workstation that has the wrong time information. All workstations should be pointing to a central NTP server. Which of the following locations would the technician check to investigate error messages related to this issue?()A、IIS logB、Application logC、System logD、Security log

Which of the following commands should Karen, a technician, use to examine and restoreprotected system files?()A、SFCB、RECOVERC、REPLACED、COPY

A technician is dispatched to a malware infected system. Upon arrival, the technician notices themalware’s pop-up on the screen. Which of the following boot methods would the technician utilize?()A、Reboot in Safe ModeB、Reboot in Recovery ConsoleC、Reboot in Last Known Good ConfigurationD、Reboot in System Debug Mode

public class Yikes {  public static void go(Long n) {System.out.println(”Long “);}  public static void go(Short n) {System.out.println(”Short “);}  public static void go(int n) {System.out.println(”int “);}  public static void main(String [] args) {  short y= 6;  long z= 7;  go(y);  go(z);  }  }  What is the result?() A、 int LongB、 Short LongC、 Compilation fails.D、 An exception is thrown at runtime.

A service fails to start. Which of the following places can a technician go to find the services console?()A、System configuration utilityB、Device ManagementC、Task ManagerD、Computer Management

单选题A technician is dispatched to a system that will not go beyond the Windows XP splash screen.Which of the following, after restart, would allow the technician to load Windows XP?()APress F6, select Last Known Good Configuration, loginBPress F8, select Debug mode, loginCPress F8, select Last Known Good Configuration, loginDPress F6, select Debug mode, login

多选题A technician wants to secure a Windows 7 Ultimate notebook hard drive. Which of the following should the technician do to implement BitLocker?() (Select TWO).ADisable TPM in the system BIOSBRun the BitLocker wizard and any necessary partitionsCEnable TPM in the system BIOSDEnable TPM in the Windows 7 OS filesESet up the OS and the system files on the same partition

单选题A technician is dispatched to a location. While working, the technician’s cell phone rings. Which of the following actions should the technician take?()AAnswer the call to determine its importance.BIgnore the call and return the call from a land line.CAnswer the call and leave the location in order to talk.DSilence the phone and allow the call to go to voice mail.

单选题A service fails to start. Which of the following places can a technician go to find the services console?()ASystem configuration utilityBDevice ManagementCTask ManagerDComputer Management

单选题A technician would like to load an operating system CD on startup. Which of the following settings would a technician change in the BIOS?()AEnable TPMBEnable BIOS passwordCDisable TPMDBoot sequence

单选题public class Yikes {  public static void go(Long n) {System.out.println(”Long “);}  public static void go(Short n) {System.out.println(”Short “);}  public static void go(int n) {System.out.println(”int “);}  public static void main(String [] args) {  short y= 6;  long z= 7;  go(y);  go(z);  }  }  What is the result?()A int LongB Short LongC Compilation fails.D An exception is thrown at runtime.

多选题A server technician has been attempting to install an operating system on the company test server for several days. The technician has experienced error messages at several points of theinstallation and the system has frozen during various parts of the boot process. The technician has replaced the power supply, graphics card and installation disk with known good components.Which of the following could be causing these issues?()AStorage driver not loadedBFragmented hard driveCDamaged or faulty NIC chipsetDDamaged or faulty system boardEMemory incompatible with the processorFMissing voltage regulator