niusouti.com

单选题An administrator attempts to open a web page and sees the following error: 'Error 404: Page not found'. The administrator then uses the ping command and finds that the default gateway cannot be pinged. At which of the following layers does the problem

题目
单选题
An administrator attempts to open a web page and sees the following error: 'Error 404: Page not found'. The administrator then uses the ping command and finds that the default gateway cannot be pinged. At which of the following layers does the problem MOST likely reside?()
A

Layer 1

B

Layer 4

C

Layer 5

D

Layer 7


相似考题
更多“An administrator attempts to open a web page and sees the fo”相关问题
  • 第1题:

    The usual address for a Web site is the(75)page address, although you can enter the address of any page and have that page sent to you.

    A.home

    B.main

    C.host

    D.house


    正确答案:A
    解析:网址一般就是主页地址,尽管你可以进入任何网页地址并且使该页发送给你。

  • 第2题:

    means "Any HTML document on an HTTP server".

    A.Web Server

    B.Web Browser

    C.Web Site

    D.Web Page


    正确答案:D
    解析:Web页面表示HTTP服务器—上任意的HTML文档。

  • 第3题:

    The usual address for a Web site is the ______ page address,although you can enter the address of any page and have that page sent to you.

    A.home

    B.main

    C.host

    D.house


    正确答案:A
    解析:译文的含义是:网址一般就是()页地址,尽管你可以进入任何网页地址并且使该页发送给你。这里指的应该是主页,而主页在英文中的翻译是homepage。所以,本题应该选择A。

  • 第4题:

    An administrator attempts a traceroute but receives a "Destination Unreadable" message. Which protocol is responsible for that message?()

    • A、RARP
    • B、RUDP
    • C、ICMP
    • D、SNMP

    正确答案:C

  • 第5题:

    You develop an ASP.NET Web page that includes multiple WebPartZone controls, an EditorZone. Users report that they cannot customize the layout of the page by moving WebParts from one.You need to ensure that users can successfully move Web Parts from one zone to another. What should you do?()

    • A、Configure the Web site to enable session state.
    • B、Configure the Web site to require authentication and to use personalization.
    • C、Add a ProxyWebPartManager control to the page.
    • D、Add a AppearanceEditorPart control to the page.

    正确答案:B

  • 第6题:

    You have a Web server named Server1 that runs Windows Server 2003 Web Edition Service Pack 2 (SP2). Server1 contains a Web site named Intranet. You notice that you can open the Intranet Web site as a Web folder. You need prevent all users from opening the Intranet Web site as a Web folder. What should you do? ()

    • A、Disable the Index this resource option.
    • B、Disable the Directory browsing option.
    • C、Disable the Enable HTTP Keep-Alives option.
    • D、Disable the Enable default content page option.

    正确答案:B

  • 第7题:

    You are developing a Web application. The Web application restricts access to an administrative page. The Web application uses the following code segment to protect the page.if (Page.User.Identity.Name != @"CONTOSO/Administrator") { the page, you are redirected to Login.aspx. You discover that the User.Identity.Name property is not being correctly populated. You need to ensure that you can access the page when you are logged on as Administrator. Which two actions should you perform? ()

    • A、In the Web.config file, enable impersonation.
    • B、In IIS, enable anonymous access.
    • C、In IIS, disable anonymous access.
    • D、In the Web.config file, set the authentication mode to Windows.

    正确答案:C,D

  • 第8题:

    多选题
    You are developing a Web application. The Web application restricts access to an administrative page. The Web application uses the following code segment to protect the page.if (Page.User.Identity.Name != @"CONTOSO/Administrator") { the page, you are redirected to Login.aspx. You discover that the User.Identity.Name property is not being correctly populated. You need to ensure that you can access the page when you are logged on as Administrator. Which two actions should you perform? ()
    A

    In the Web.config file, enable impersonation.

    B

    In IIS, enable anonymous access.

    C

    In IIS, disable anonymous access.

    D

    In the Web.config file, set the authentication mode to Windows.


    正确答案: A,D
    解析: 暂无解析

  • 第9题:

    多选题
    You are developing a Web application. The Web application restricts access to an administrative page. The Web application uses the following code segment to protect the page.If Page.User.Identity.Name <> "CONTOSO/Administrator" Then Response.Redirect("login.aspx")End IfYou are logged on as Administrator. When you display the page, you are redirected to Login.aspx. You discover that the User.Identity.Name property is not being correctly populated. You need to ensure that you can access the page when you are logged on as Administrator. Which two actions should you perform? ()
    A

    In the Web.config file, enable impersonation.

    B

    In IIS, enable anonymous access.

    C

    In IIS, disable anonymous access.

    D

    In the Web.config file, set the authentication mode to Windows.


    正确答案: B,C
    解析: 暂无解析

  • 第10题:

    单选题
    A network administrator has configured source NAT, translating to an address that is on a locally connected subnet.The administrator sees the translation working, but traffic does not appear to come back. What is causing the problem?()
    A

    The host needs to open the telnet port.

    B

    The host needs a route for the translated address.

    C

    The administrator must use a proxy-arp policy for the translated address.

    D

    The administrator must use a security policy, which will allow communication between the zones.


    正确答案: C
    解析: 暂无解析

  • 第11题:

    单选题
    Your web application views all have the same header, which includes the  tag in the  elementof the rendered HTML. You have decided to remove this redundant HTML code from your JSPs and put itinto a single JSP called /WEB-INF/jsp/header.jsp. However, the title of each page is unique, so you havedecided to use a variable called pageTitle to parameterize this in the header JSP, like this: 10.${param.pageTitle} Which JSP code snippet should you use in your main view JSPs to insert the header and pass thepageTitle variable?()
    A

    <jsp:insert page=’/WEB-INF/jsp/header.jsp’>. ${pageTitle=’Welcome Page’}. </jsp:insert>

    B

    <jsp:include page=’/WEB-INF/jsp/header.jsp’>. ${pageTitle=’Welcome Page’}. </jsp:include>

    C

    <jsp:include file=’/WEB-INF/jsp/header.jsp’>. ${pageTitle=’Welcome Page’}. </jsp:include>

    D

    <jsp:insert page=’/WEB-INF/jsp/header.jsp’>. <jsp:param name=’pageTitle’ value=’Welcome Page’ /> . </jsp:insert>

    E

    <jsp:include page=’/WEB-INF/jsp/header.jsp’>. <jsp:param name=’pageTitle’ value=’Welcome Page’ /> . </jsp:include>


    正确答案: C
    解析: 暂无解析

  • 第12题:

    单选题
    You have a computer that runs Windows 7. You open Windows Internet Explorer and access a Web site asshown in the exhibit. (Click the Exhibit button.) You click the Suggested Sites button, but the suggestions failto display. You need to obtain suggested sites.  What should you do?()
    A

    From the Page menu, enable Caret Browsing.

    B

    From the Safety menu, disable the SmartScreen Filter.

    C

    From the Start menu, open a new Internet Explorer window.

    D

    From the Microsoft Corporation Web site, refresh the Suggested Sites Web Slice.


    正确答案: C
    解析: 暂无解析

  • 第13题:

    A network administrator has configured source NAT, translating to an address that is on a locally connected subnet.The administrator sees the translation working, but traffic does not appear to come back.What is causing the problem?()

    A. The host needs to open the telnet port.

    B. The host needs a route for the translated address.

    C. The administrator must use a proxy-arp policy for the translated address.

    D. The administrator must use a security policy, which will allow communication between the zones.


    参考答案:C

  • 第14题:

    is an identifier of a web page。

    A.ASP

    B.HTML

    C.HTTPS

    D.URL


    正确答案:D
    解析:统一资源定位器(URL)是一种用来鉴别文件与资源在WWW中地址的专用表示。

  • 第15题:

    After creating a WebSphere Commerce instance, an administrator attempts to log on to the WebSphere Commerce Administration Console.  The browser reports a "500 Internal Server Error".  What could cause this to occur?()

    • A、The web server was not started
    • B、The Payments Engine was not started
    • C、The WebSphere Commerce Payments instance was not started
    • D、The WebSphere Commerce application server was not started
    • E、The Configuration Manager service was not started

    正确答案:D

  • 第16题:

    An administrator attempts to open a web page and sees the following error: 'Error 404: Page not found'. The administrator then uses the ping command and finds that the default gateway cannot be pinged. At which of the following layers does the problem MOST likely reside?()

    • A、Layer 1
    • B、Layer 4
    • C、Layer 5
    • D、Layer 7

    正确答案:A

  • 第17题:

    You deploy a Microsoft Exchange mobile messaging solution that uses Microsoft Windows Mobile 5.0 with Microsoft Messaging and Security Feature Pack.   The messaging infrastructure is configured to support the remote wipe feature.   When an administrator attempts to perform a remote wipe of a Windows Mobilebased device, the administrator receives a 401 error message.   You need to ensure that the administrator is authorized to perform remote wipes only.   What should you do?()

    • A、Grant the administrator membership in the Domain Administrators group.
    • B、Grant the administrator membership in the Exchange Administrators group.
    • C、Add the new administrator account to the Discretionary Access Control List (DACL) of the Microsoft Exchange ActiveSync Administration folder.
    • D、Select the Directory Security tab of the Exchange Server administration Web site, and then configure Read, Write, and Directory Browsing permissions.

    正确答案:C

  • 第18题:

    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、 In the Web.config file: <authorization> <deny users=”?”/></authorization> On each page in the Web site: void Page_Load(Object sender, EventArgs E){ FormsAuthentication.Initialize(); //Rest of the Page_Load code goes here}
    • B、On each page in the Web site: void Page_Load(Object sender, EventArgs E){ FormsAuthentication.RedirectToLoginPage(“login.aspx”); //Rest of the Page_Load code goes here}
    • C、On each page in the Web site: void Page_Load(Object sender, EventArgs E){ Response.Redirect(“login.aspx”);//Rest of the Page_Load code goes here}
    • D、In the Web.config file: <authentication mode=”Forms”> <forms name=”.ASPXUSERDEMO” loginUrl=”login.aspx” protection=”All”timeout=”60” /> </authentication>

    正确答案:D

  • 第19题:

    单选题
    After creating a WebSphere Commerce instance, an administrator attempts to log on to the WebSphere Commerce Administration Console.  The browser reports a "500 Internal Server Error".  What could cause this to occur?()
    A

    The web server was not started

    B

    The Payments Engine was not started

    C

    The WebSphere Commerce Payments instance was not started

    D

    The WebSphere Commerce application server was not started

    E

    The Configuration Manager service was not started


    正确答案: E
    解析: 暂无解析

  • 第20题:

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

    In the Web.config file: <authorization> <deny users=? /></authorization> On each page in the Web site: Protected Sub Page_Load(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles Me.Load FormsAuthentication.Initialize() End Sub

    B

    On each page in the Web site: Protected Sub Page_Load(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles Me.Load FormsAuthentication RedirectToLoginPage(login.aspx) End Sub

    C

    On each page in the Web site: Protected Sub Page_Load(ByVal sender As Object, _ ByVal e As System.EventArgs) Handles Me.Load Response.Redirect(login.aspx) End Sub

    D

    In the Web.config file: <authentication mode=Forms> <forms name=.ASPXUSERDEMO loginUrl=login.aspx protection=All timeout=60 /></authentication>


    正确答案: B
    解析: 暂无解析

  • 第21题:

    单选题
    You are building your own layout mechanism by including dynamic content for the page’s header and footersections. The footer is always static, but the header generates the  tag that requires the page name tobe specified dynamically when the header is imported. Which JSP code snippet performs the import of theheader content?()
    A

    <jsp:include page=’/WEB-INF/jsp/header.jsp’><jsp:param name=’pageName’ value=’Welcome Page’ /> </jsp:include>

    B

    <jsp:import page=’/WEB-INF/jsp/header.jsp’><jsp:param name=’pageName’ value=’Welcome Page’ /> </jsp:import>

    C

    <jsp:include page=’/WEB-INF/jsp/header.jsp’><jsp:attribute name=’pageName’ value=’Welcome Page’ /> . </jsp:include>

    D

    <jsp:import page=’/WEB-INF/jsp/header.jsp’>. <jsp:attribute name=’pageName’ value=’Welcome Page’ /> . </jsp:import>


    正确答案: D
    解析: 暂无解析

  • 第22题:

    多选题
    You write a logging function for a Web Form. You call the logging function from the Page_Unload event handler. You test the Web Form and notice that the Page_Unload event handler does not call the logging function. You need to ensure that the logging function is called. What are two possible ways to achieve this goal? ()
    A

    Set the Page attribute to AutoEventWireup=False. Remove the attribute onunload=Page_Unload from the Web Form element.

    B

    Set the Page attribute to AutoEventWireup=False. Add the attribute OnUnload=Page_Unload to the Web Form element.

    C

    Set the Page attribute to AutoEventWireup=False. Add the Web Form attribute autocomplete=on.

    D

    Set the Page attribute to AutoEventWireup=True.


    正确答案: A,B
    解析: 暂无解析

  • 第23题:

    单选题
    You have been tasked with creating Business Events for an E-Business Suite workflow project. Whatwould you use to create your Business Events?()
    A

    Oracle Workflow Builder

    B

    Oracle Workflow Definition Loader

    C

    Oracle Business Event Definition Loader

    D

    Workflow Administrator Web page in E-Business Suite


    正确答案: B
    解析: 暂无解析

  • 第24题:

    单选题
    You have a computer that runs Windows 7 and Windows Internet Explorer 8. You open Internet Explorerand access a Web site. The Web site displays a page that has misaligned text and graphic images. Youverify that the Web page displays correctly in previous versions of Internet Explorer.  You need to view theWeb page correctly. What should you do?()
    A

    Modify the text size.

    B

    Enable Caret Browsing.

    C

    Enable Compatibility View.

    D

    Disable the SmartScreen Filter.


    正确答案: B
    解析: 暂无解析