When installing a new scanner, Windows XP does not automatically recognize the scanner. Which of the following actions should be taken?()A、Use the Scanners and Cameras Wizard to add the device.B、Enable the scanner in the BIOS.C、Add new printer Wizard.D、Ensure the scanner is not locked.

When installing a new scanner, Windows XP does not automatically recognize the scanner. Which of the following actions should be taken?()

  • A、Use the Scanners and Cameras Wizard to add the device.
  • B、Enable the scanner in the BIOS.
  • C、Add new printer Wizard.
  • D、Ensure the scanner is not locked.

相关考题:

A technician receives a new printer for repair and the work order states that when powered on theprinter makes a loud noise and will not print. Which of the following actions should the technician take? ()A、Install new drivers on the computer.B、Install a new ink cartridge.C、Install a print head on the printer.D、Remove the packing tape from the print head.

A technician receives a new printer for repair and the work order states that when powered on the printer makes a loud noise and will not print.  Which of the following actions should the technician take? ()A、Install new drivers on the computer.B、Install a new ink cartridge.C、Install a print head on the printer.D、Remove the packing tape from the print head.

A user is reporting that access to a file server is much slower than it has been. The system administrator completes a test of the server using a system monitoring tool and compares it to the previously taken baseline. The comparison shows that there are no significant changes in the use ofsystem resources.  Which of the following actions should be taken to resolve this users problem?()A、 Add additional RAM to the users PCB、 Troubleshoot the users PCC、 Add additional RAM to the serverD、 Add additional hard drive space to the server

When installing a new Plug and Play sound card, a technician should turn off and unplug the computer; remove the computer’s cover; locate the sound card slot, insert and secure the card in the slot and:()A、plug in and turn on the computer; let Windows recognize the new hardware and install the driver.B、plug in the computer; let Windows recognize the new hardware and plug in the speakers.C、let Windows recognize the new hardware; install the driver and plug in the speakers.D、turn on and plug in the computer; let Windows recognize the new hardware and install the driver.

A user needs assistance in troubleshooting a printing problem. The print job seems to process correctly at the workstation but never comes out of the printer. Which of the following should atechnician recommend?()A、Restart the print job in the print queue.B、Print a test page from the printer properties.C、Run the Add Printer Wizard.D、Restart the print spooler service.

When installing an inkjet printer for the first time, which of the following should be done FIRST? ()A、Print a test page from the Printer icon under the printers tab.B、Select the new printer as the default printer.C、Run the printhead alignment within the Tools folder of the printer.D、Ensure that the printer is set for bi-directional printing.

You administer a Windows 2000 Professional desktop computer. TKPrinter1 is a printer used by the engineering and research departments. The printer is shared from the Windows 2000 Professional computer that you administer. The engineering department frequently prints documents that are several pages in length, which takes a long time to print. Users in the research department who have small files to print often must wait a long time for their jobs to print. You want to reduce the time it takes for the user in research department to print their files. You want to accomplish this with the least amount of administrative effort.  What should you do?()A、Monitor the print queue, and raise the priority of all the print jobs that are sent by users who are not members of the engineering department.B、Delete the old printer. Add a new printer, and set the priority to a higher value. Pause the print queue only when the engineering print jobs are printing.C、Configure the priority of TKPrinter1 to 50. Add a new printer, and set the priority to 1. For the new printer, deny Print permission for users in the engineering department.D、Configure the priority of TKPrinter1 to 50. Add a new printer, and set the priority to 70. For the new printer, deny Print permission for users in the engineering department.

You install a new USB scanner on a Windows 2000 Professional computer. Two weeks later, the user of the computer informs you that when he scans images with the scanner, the colors do not display correctly. When he prints the scanned images, the colors print correctly.  You need to ensure that the scanned images display the correct colors. What should you do?()A、In Scanners and Cameras in Control Panel, remove the color management profile.B、In the Display Properties in Control Panel, set the Windows color scheme to Windows standard.C、In the advanced properties of the Display Properties in Control Panel, remove all color      management profiles.D、In the Display Properties in Control Panel, increase the colors setting.

You create a Web Form that allows users to create a new account. You add a CreateUserWizard control by using the following code segment. You need to ensure that the wizard automatically sends an e-mail message to users when they finish creating their accounts. You add a valid element to the Web.config file. Which code segment should you add to the Page_Load event? ()A、Wizard1.RequireEmail = TrueB、Wizard1.Email = "user@address.com"C、Wizard1.MailDefinition.From = "registration@mysite.com"D、SmtpMail.SmtpServer = "mail.contoso.com"

You use Microsoft .NET Framework 4 to create a Windows Forms application. You add a new class named Customer to the application. You select the Customer class to create a new object data source. You add the following components to a Windows Form: A BindingSource component named customerBindingSource that is data-bound to the Customer object data source. A set of TextBox controls to display and edit the Customer object properties. Each TextBox control is data-bound to a property of the customerBindingSource component. An ErrorProvider component named errorProvider that validates the input values for each TextBox control. You need to ensure that the input data for each TextBox control is automatically validated by using the ErrorProvider component. Which two actions should you perform?()A、Implement the validation rules inside the Validating event handler of each TextBox control by throwing an exception when the value is invalid.B、Implement the validation rules inside the TextChanged event handler of each TextBox control by throwing an exception when the value is invalid.C、Implement the validation rules inside the setter of each property of the Customer class by throwing an exception when the value is invalid.D、Add the following code segment to the InitializeComponent method of the Windows Form.this.errorProvider.DataSource = this.customerBindingSource;E、Add the following code segment to the InitializeComponent method of the Windows Form. this.errorProvider.DataSource = this.customerBindingSource.DataSource; this.errorProvider.DataMember = this.customerBindingSource.DataMember;

BlingbyAlex.com was known several years ago by the name AlexBling.com.At times, the sales staff still receives orders from clients at the AlexBling.com address.Both names are owned by the company.After you successfully deploy an Exchange 2010 server configuration, which includes two Hub Transport servers, the sales staff informs you that they are no longer able to receive mail at the AlexBling.com address.What should you do so that they can receive email from both domains?()A、On the Hub Transport server, use the New Accepted Domain Wizard to add AlexBling.com.B、On the Mailbox server, use the New Accepted Domain Wizard to add AlexBling.com.C、Use Active Directory to add an email alias to each user’s account for AlexBling.com.D、On the Client Access server, use the New Accepted Domain Wizard to add AlexBling.com.

You are developing a Windows Communication Foundation (WCF) client application. The client application contains the following code. [ServiceContract] public interface ISocialStatus { [OperationContract] [WebInvoke(UriTemplate = "/statuses/update.xml?status-{text}")] void UpdateStatus(string text); } public class SocialClient : ClientBase, ISocialStatus { ... } The configuration file contains the following lines. binding="webHttpBinding" contract="SocialApp.ISocialStatus" bindingConfiguration="BindingConfig" / You need to ensure that the service is consumed. Which code segment should you use?()A、var client = new SocialClient("SocialClient"); client.Endpoint.Behaviors.Add(new WebHttpBehavior());B、var client = new SocialClient("SocialClient"); client.Endpoint.Behaviors.Add(new WebScriptEnablingBehovior());C、var client = new SocialClient("POST"); client.Endpoint.Behaviors.Add(new WebHttpBehovior());D、var client = new SocialClient("POST"); client.Endpoint.Behaviors.Add(new WebScriptEnablingBehavior());

You have a computer that runs Windows XP Professional. You connect one local print device and install a printer. You share the printer. You need to give a user the ability to manage all new print jobs submitted to the printer. Your solution must prevent the user from installing additional local printers. What should you do?()A、In the printer properties, assign the Manage Printers permission to the user.B、In the printer properties, assign the Manage Documents permission to the user.C、From the Local Users and Groups snap-in, add the user to the Power Users group.D、From the Local Users and Groups snap-in, add the user to the Replicators group.

All client computers on your company network were recently upgraded from Windows Vista to Windows7. Several employees use a scanner to import document images into a database. They install a new scanning application on their computers. The application updates the device driver for the scanners as part of the installation process. Employees report that the application can no longer connect to the scanner. You need to ensure that the employees can use the scanner. What should you do?()A、Roll back the device driver to the previous version.B、Reinstall the application in Windows Vista compatibility mode.C、Set the application compatibility properties to run the application as an administrator.D、Restart the computer by using the System Configuration tool to load only basic devices and services.

You are the administrator of a Windows 2000 Professional computer that has a shared printer. Several departments in your company use the shared printer. The sales department frequently prints multiple-page presentation graphics, which take a long time to print. Users in other departments who have short messages to print must wait an unnecessarily long time for their jobs to print. You want to improve the efficiency of printing for all users who use the shared printer. You want to accomplish this with the least amount of administrative effort. What should you do? ()A、Configure the priority of the printer to 50. Add a new printer, and set the priority to 1.  For the new printer, deny Print permission for users in the sales department.B、Configure the priority of the printer to 50. Add a new printer, and set the priority to 95  For the new printer, deny Print permission for users in the sales department.C、Monitor the print queue, and raise the priority of all the print jobs that are sent by users who are not members of the sales department.D、Delete the old printer. Add a new printer, and set the priority to a higher value. Pause the print queue only when graphic-intensive print jobs are printing.

You have a computer running Windows 2000 Professional. You have purchased a new USB scanner. You attached it to the USB port. When you go to device manager to see the status of the USB port, you find a USB controller there but with a yellow warning icon next to the host controller name. What should you do to resolve this problem? ()A、Update the scanner drivers using certified driversB、Enable the USB port in the computers BIOS again.C、Contact the maker or vendor for you system and obtain the current version of BIOS.D、Enable the USB hub controller in device manager.

Your companys network includes an Active Directory Domain Services (AD DS) domain. You manage Hyper-V servers by using Microsoft System Center Virtual Machine Manager (VMM) 2008 R2. You install Windows Server 2008 R2 Datacenter (Server Core Installation) on 100 new servers, and you add the servers to the domain. You need to add the Hyper-V role to the 100 new servers. You must accomplish this goal by using the least amount of administrative effort. What should you do?()A、Run the Add-WindowsFeature RSAT-Hyper-V PowerShell cmdlet.B、In Server Manager, use the Add Roles Wizard to add the Hyper-V role.C、In the VMM Administrator Console, use the Add Hosts Wizard to individually add each new server to VMM.D、In the VMM Administrator Console, use the Add Hosts Wizard to simultaneously add all 100 new servers to VMM.

You have a computer running Windows 2000 Professional. You have purchased a new USB scanner. You attached it to the USB port. When you go to device manager to see the status of the USB port, You did not find any USB controller there. You then reboot your system and go to system BIOS settings and enable the USB Controller. But it is still missing. What should you do to resolve this problem?()A、Update the scanner drivers using certified driversB、Enable the USB port in the computers BIOS again.C、Contact the maker or vendor for you system and obtain the current version of BIOS.D、Enable the USB hub controller in device manager.E、Reinstall the USB device driver and disable the USB error detection

You have a computer running Windows 2000 Professional. You have purchased a new USB scanner. You attached it to the USB port. When you go to device manager to see the status of the USB port, you did not find any USB controller there. What should you do to resolve this problem?()A、Update the scanner drivers using certified driversB、Enable the USB port in the computers BIOSC、Enable the USB hub controller in device manager.D、Reinstall the USB device driver and disable the USB error detection

You are the network administrator for your company. The network consists of a single Active Directorydomain. All network servers run Windows Server 2003. Three thousand client computers run Windows 2000Professional, and 1,500 client computers run Windows XP Professional.A new employee named Peter is hired to assist you in installing Windows XP Professional on 150 new client computers.You need to ensure that Peter has only the minimum permissions required to add new computer accounts to the domain and to own the accounts that he creates. Peter must not be able to delete computer accounts.What should you do()?A、Add Peter's user account to the Server Operators group.B、Add Peter's user account to the Account Operators group.C、Use the Delegation of Control Wizard to permit Peter's user account to create new computer objects in the Computers container.D、Create a Group Policy object (GPO) and link it to the domain. Configure the GPO to permit Peter's user account to add client computers to the domain.

单选题You install a new USB scanner on a Windows 2000 Professional computer. Two weeks later, the user of the computer informs you that when he scans images with the scanner, the colors do not display correctly. When he prints the scanned images, the colors print correctly. You need to ensure that the scanned images display the correct colors. What should you do? ()AIn scanners and cameras in control panel, remove the color management profile.BIn the display properties in control panel, set the Windows color scheme to Windows standard.CIn the advanced properties of the display properties in control panel, remove all color management profiles.DIn the display properties in control panel, increase the colors setting.

单选题You have a computer running Windows 2000 Professional. You have purchased a new USB scanner. You attached it to the USB port. When you go to device manager to see the status of the USB port, you did not find any USB controller there. What should you do to resolve this problem?()AUpdate the scanner drivers using certified driversBEnable the USB port in the computers BIOSCEnable the USB hub controller in device manager.DReinstall the USB device driver and disable the USB error detection

单选题You have a computer that runs Windows XP Professional. The computer is a member of an Active Directory domain. A server administrator installs and shares a new printer on a server that runs Windows Server 2003. You need to configure the computer to print to the new printer. What should you do?()AFrom the computer, install a local printer.BFrom the computer, install a network printer. CFrom the Active Directory domain, add the computer account for the Windows XP Professional computer to the Print Operators group. DFrom the Windows Server 2003 server, add the computer account for the Windows XP Professional computer to the Print Operators group.

单选题Which of the following actions should normally be taken during each watch when the auxiliary boilers is in operation?()Aclean the flame scanner photocell windowBInspect and clean all solenoid valvesClift the safety valves by handDInspect for oil or water leaks

单选题A user is reporting that access to a file server is much slower than it has been. The system administrator completes a test of the server using a system monitoring tool and compares it to the previously taken baseline. The comparison shows that there are no significant changes in the use ofsystem resources.  Which of the following actions should be taken to resolve this users problem?()A Add additional RAM to the users PCB Troubleshoot the users PCC Add additional RAM to the serverD Add additional hard drive space to the server

单选题You create a Web Form that allows users to create a new account. You add a CreateUserWizard control by using the following code segment.You need to ensure that the wizard automatically sends an e-mail message to users when they finish creating their accounts. You add a valid element to the Web.config file. Which code segment should you add to the Page_Load event?()AWizard1.RequireEmail = TrueBWizard1.Email = user@address.comCWizard1.MailDefinition.From = registration@mysite.comDSmtpMail.SmtpServer = mail.contoso.com

单选题When installing a new scanner, Windows XP does not automatically recognize the scanner. Which of the following actions should be taken?()AUse the Scanners and Cameras Wizard to add the device.BEnable the scanner in the BIOS.CAdd new printer Wizard.DEnsure the scanner is not locked.