网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

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.

参考答案

更多 “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.” 相关考题
考题 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?()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.

考题 单选题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.

考题 单选题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

考题 单选题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.

考题 单选题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?()A authorization allow users=?/ /authorizationB authorization deny users=?/ /authorizationC authorization deny users=*//authorizationD authorization 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?()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.

考题 单选题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. 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?()A Determine what has changedB Test a solution.C Establish the most probable causeD Escalate 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? ()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=* /

考题 单选题你创建了一个管理项目文档的 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=* /