Web users are reporting issues downloading various types of media. Which of the following shouldthe administrator do FIRST?()A、Find out what has recently changed on the networkB、Create an action plan and solution identifying potential effects.C、Continue to gather information and see what other problems may exist.D、Determine the most probable cause.

Web users are reporting issues downloading various types of media. Which of the following shouldthe administrator do FIRST?()

  • A、Find out what has recently changed on the network
  • B、Create an action plan and solution identifying potential effects.
  • C、Continue to gather information and see what other problems may exist.
  • D、Determine the most probable cause.

相关考题:

The author has made a significant ____ to explain various issues regarding the web and its contents.A.reviewB.contactC.attemptD.comment

You want to enable users of a Web application to modify the Web application‘s UI and behavior. These modifications must be maintained at the user level so that when users return to the Web application, the changes are still in effect. You need to achieve this goal by using the minimum amount of custom code.What should you do?()A. Persist control data by using view state.B. Use Web Part controls.C. Maintain a profile for each user.D. Enable session state on the Web application.

You are working on an existing Web site. You need to secure the Web site by redirecting all users to the logon page, Login.aspx. After logging on, users must be sent back to the page that they originally requested.Which code segment should you use?()A.B.C.D.

你创建了一个管理项目文档的 intranet Web 站点。你需要所有用户都可以浏览站点的文档,但是只有 administrators 组的成员可以上传文档。你应该使用下面那个代码段来配置Web.config 文件?() A. allow verbs=GET users=* /deny verbs=POST users=* /allow verbs=POSTroles=Administrators /B. allow role s=Administrators /deny users=* /C. allow users=Administrators /allow users=* /D. allow verbs =POST roles=Administrators /deny verbs=POST users=* /allow verbs=GET users=* /

You create an intranet Web site for management of project documents. You need to enable all users to browse documents on the site. Only members of the administrators group must be able to upload files. Which code segment of the Web.config file should you use? ()A. allow verbs=GET users=* /deny verbs=POST users=* /allow verbs=POST roles=Administrators /B. allow roles=Administrators /deny users=* /C. allow u sers=Administrators /allow users=* /D. allow v erbs = POST roles=Administrators /deny verbs=POST users=* /allow verbs=GET users=* /

Overall objective of financial reporting is to provide financial information useful to internal users in making economic decisions.()

Web users are reporting issues downloading various types of media. Which of the following shouldthe administrator do FIRST?() A. Find out what has recently changed on the networkB. Create an action plan and solution identifying potential effects.C. Continue to gather information and see what other problems may exist.D. Determine the most probable cause.

Users are reporting that they are still experiencing network issues even though a fix was recentlyapplied. Which of the following troubleshooting methodology steps is the administrator using?() A. Escalating the problemB. Testing the solution and identifying the effectsC. Continuing to gather information about the same symptomsD. Documenting the solution and the entire process

Several users from the same location are reporting problems accessing the intranet server. Anadministrator has verified that no other remote areas are having issues connecting to the sameserver.Which of the following steps should the administrator perform NEXT?()A. Determine what has changedB. Test a solution.C. Establish the most probable causeD. Escalate the problem to the right section

You create a Web Form that contains a button named btnCancel that enables users to exit the page. When users click this button, validation must not occur. During testing you learn that clicking the Cancel button does not enable users to exit the page. You need to ensure that users can always exit the page. What should you do? ()A、Set the Enabled property of the validation controls on the Web Form to False.B、Set the CausesValidation property of the btnCancel button to False.C、Set the CausesValidation property of the btnCancel button to True.D、Set the Visible property of the validation controls on the Web Form to False.

A user is reporting a loud grinding sound when the machine is powered on. The machine loadsinto windows and the user does not notice any performance issues. Which of the following is the MOST likely cause of the noise?()A、PowersupplyfailureB、BadHDC、BadfanD、FaultyCD-Rom

What are two common reporting requirements?()A、the database connectivity methodB、the number of users in the solutionC、the number of reports being installed D、ability to send completed reports by e-mailE、reporting output available in Microsoft Excel

Your company runs Windows Server 2008. The company network is configured as an Active Directory domain named contoso.com. The network has a Web server named WEB1. The domain users access WEB1 by using http://web1.  You generate a self-signed certificate for WEB1 and configure WEB1 to use SSL.  Users report that they get a warning message when they connect to WEB1 by using https://web1.You need to ensure that users can connect to WEB1 without receiving a warning message. What should you do?()A、Add the https: //web1 name to the list of Trusted Sites zone on all the computers in the domain.B、Open the Certificates console on WEB1. Export the self-signed certificate to a web1.cer file. Install the web1.cer file on all the computers in the domain.C、Join WEB1 to the contoso.com domain. Reissue the self-signed certificate. Request all the users to use https: //web1.contoso.com to connect to WEB1.D、Create a DNS Host (A) Record for WEB1 in the contoso.com zone. Reissue the self-signed certificate. Request all the users to use https: //web1.contoso.com to connect to WEB1.

You are troubleshooting an ASP.NET Web application. System administrators have recently expanded your web farm from one to two servers. Users are periodically reporting an error message about invalid view state. You need to fix the problem. What should you do?()A、Set viewStateEncryptionMode to Auto in web.config on both servers.B、Set the machineKey in machine.config to the same value on both servers.C、Change the session state mode to SQLServer on both servers and ensure both servers use the same connection string.D、Override the SavePageStateToPersistenceMedium and LoadPageStateFromPersistenceMedium methods in the page base class to serialize the view state to a local web server file.

You create an intranet Web site for management of project documents. You need to enable all users to browse documents on the site. Only members of the administrators group must be able to upload files. Which code segment of the Web.config file should you use? ()A、allow verbs="GET" users="*" /deny verbs="POST" users="*" /allow verbs="POST" roles="Administrators" /B、allow role s="Administrators" /deny users="*" /C、allow u sers="Administrators" /allow users="*" /D、allow v erbs = "POST" roles="Administrators" /deny verbs="POST" users="*" /allow verbs="GET" users="*" /

You are creating an ASP.NET Web site. The site contains pages that are available to anonymous users. The site also contains a page named Premium.aspx that provides premium content to only members of a group named Subscribers. You need to modify the web.config file to ensure that Premium.aspx can be accessed by only members of the Subscribers group. Which configuration should you use?()A、location path="Premium.aspx" system.web authorization allow users="Subscribers"/            deny users="*"/ /authorization /system.web /location B、location path="Premium.aspx" system.web authorization allow roles="Subscribers"/             deny users="*"/ /authorization /system.web /location C、location path="Premium.aspx" system.web authorization allow roles="Subscribers"/             deny users="?"/ /authorization /system.web /location D、location path="Premium.aspx" system.web authorization deny users="*"/ allow roles="Subscribers"/ /authorization /system.web /location

单选题Your company runs Windows Server 2008. The company network is configured as an Active Directory domain named contoso.com. The network has a Web server named WEB1. The domain users access WEB1 by using http://web1.  You generate a self-signed certificate for WEB1 and configure WEB1 to use SSL.  Users report that they get a warning message when they connect to WEB1 by using https://web1.You need to ensure that users can connect to WEB1 without receiving a warning message. What should you do?()AAdd the https: //web1 name to the list of Trusted Sites zone on all the computers in the domain.BOpen the Certificates console on WEB1. Export the self-signed certificate to a web1.cer file. Install the web1.cer file on all the computers in the domain.CJoin WEB1 to the contoso.com domain. Reissue the self-signed certificate. Request all the users to use https: //web1.contoso.com to connect to WEB1.DCreate a DNS Host (A) Record for WEB1 in the contoso.com zone. Reissue the self-signed certificate. Request all the users to use https: //web1.contoso.com to connect to WEB1.

单选题You are troubleshooting an ASP.NET Web application. System administrators have recently expanded your web farm from one to two servers. Users are periodically reporting an error message about invalid view state. You need to fix the problem. What should you do?()ASet viewStateEncryptionMode to Auto in web.config on both servers.BSet the machineKey in machine.config to the same value on both servers.CChange the session state mode to SQLServer on both servers and ensure both servers use the same connection string.DOverride the SavePageStateToPersistenceMedium and LoadPageStateFromPersistenceMedium methods in the page base class to serialize the view state to a local web server file.

单选题Web users are reporting issues downloading various types of media. Which of the following shouldthe administrator do FIRST?()AFind out what has recently changed on the networkBCreate an action plan and solution identifying potential effects.CContinue to gather information and see what other problems may exist.DDetermine the most probable cause.

单选题You are creating an ASP.NET Web site. The site contains pages that are available to anonymous users. The site also contains a page named Premium.aspx that provides premium content to only members of a group named Subscribers. You need to modify the web.config file to ensure that Premium.aspx can be accessed by only members of the Subscribers group. Which configuration should you use?()Alocation path=Premium.aspx system.web authorization allow users=Subscribers/            deny users=*/ /authorization /system.web /location Blocation path=Premium.aspx system.web authorization allow roles=Subscribers/             deny users=*/ /authorization /system.web /location Clocation path=Premium.aspx system.web authorization allow roles=Subscribers/             deny users=?/ /authorization /system.web /location Dlocation path=Premium.aspx system.web authorization deny users=*/ allow roles=Subscribers/ /authorization /system.web /location

单选题You create a Web Form that contains a button named btnCancel that enables users to exit the page. When users click this button, validation must not occur. During testing you learn that clicking the Cancel button does not enable users to exit the page. You need to ensure that users can always exit the page. What should you do? ()ASet the Enabled property of the validation controls on the Web Form to False.BSet the CausesValidation property of the btnCancel button to False.CSet the CausesValidation property of the btnCancel button to True.DSet the Visible property of the validation controls on the Web Form to False.

单选题You deploy your companys Internet Web site. You need to deny anonymous access to the Web site, allowing only authenticated users. Which code segment should you use?()Aauthorization allow users=?/ /authorizationBauthorization deny users=?/ /authorizationCauthorization deny users=*//authorizationDauthorization allow users=*/ /authorization

单选题You want to enable users of a Web application to modify the Web application's UI and behavior. These modifications must be maintained at the user level so that when users return to the Web application, the changes are still in effect. You need to achieve this goal by using the minimum amount of custom code. What should you do?()APersist control data by using view state.BUse Web Part controls.CMaintain a profile for each user.DEnable session state on the Web application.

单选题Users are reporting that they are still experiencing network issues even though a fix was recentlyapplied. Which of the following troubleshooting methodology steps is the administrator using?()AEscalating the problemBTesting the solution and identifying the effectsCContinuing to gather information about the same symptomsDDocumenting the solution and the entire process

单选题Several users from the same location are reporting problems accessing the intranet server. An administrator has verified that no other remote areas are having issues connecting to the same server. Which of the following steps should the administrator perform NEXT?()ADetermine what has changedBTest a solution.CEstablish the most probable causeDEscalate the problem to the right section

单选题You create an intranet Web site for management of project documents. You need to enable all users to browse documents on the site. Only members of the administrators group must be able to upload files. Which code segment of the Web.config file should you use? ()Aallow verbs=GET users=* /deny verbs=POST users=* /allow verbs=POST roles=Administrators /Ballow role s=Administrators /deny users=* /Callow u sers=Administrators /allow users=* /Dallow v erbs = POST roles=Administrators /deny verbs=POST users=* /allow verbs=GET users=* /

单选题你创建了一个管理项目文档的 intranet Web 站点。你需要所有用户都可以浏览站点的文档,但是只有 administrators 组的成员可以上传文档。你应该使用下面那个代码段来配置Web.config 文件?()Aallow verbs=GET users=* /deny verbs=POST users=* /allow verbs=POSTroles=Administrators /Ballow role s=Administrators /deny users=* /Callow users=Administrators /allow users=* /Dallow verbs =POST roles=Administrators /deny verbs=POST users=* /allow verbs=GET users=* /