Your web page includes a Java SE v1.5 applet with the following declaration: 11. 13. 14. Which HTTP method is used to retrieve the applet code?()A、GETB、PUTC、POSTD、RETRIEVE

题目

Your web page includes a Java SE v1.5 applet with the following declaration: 11. 13. 14. Which HTTP method is used to retrieve the applet code?()

  • A、GET
  • B、PUT
  • C、POST
  • D、RETRIEVE

相似考题
更多“Your web page in”相关问题
  • 第1题:

    means "Any HTML document on an HTTP server".

    A.Web Server

    B.Web Browser

    C.Web Site

    D.Web Page


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

  • 第2题:

    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。

  • 第3题:

    You are using Microsoft Windows Internet Explorer 7 on your computer. You need to print only the graphic on a Web page.How should you print the graphic?()

    A.A

    B.B

    C.C

    D.D


    参考答案:B

  • 第4题:

    You create a master page named Article.master. Article.master serves as the template for articles on your Web site. The master page uses the following page directives. <%@ Master Language="C#" Src="~/article.master.cs" Inherits="article" %> You need to create a content page that uses the master page as a template. In addition, you need to use a single master page for all devices that access the Web site. Which code segment should you use? ()

    • A、<%@ Page Language="C#" Theme="article"%>
    • B、<%@ Page Language="C#" MasterPageFile="~/article.master"%>
    • C、<%@ Page Language="C#" ie:MasterPageFile="~/article.master"%>
    • D、<%@Page Language="C#" all:MasterPageFile="~/article.master"%>

    正确答案:B

  • 第5题:

    You create a master page named Article.master. Article.master serves as the template for articles on your Web site. The master page uses the following page directives. <%@ Master Language="VB" CodeFile="article.master.vb" Inherits="article" %> You need to create a content page that uses the master page as a template. In addition, you need to use a single master page for all devices that access the Web site. Which code segment should you use? ()

    • A、<%@ Page Language="VB" Theme="article"%>
    • B、<%@ Page Language="VB" MasterPageFile="~/article.master"%>
    • C、<%@ Page Language="VB" ie:MasterPageFile="~/article.master"%>
    • D、<%@Page Language="VB" all:MasterPageFile="~/article.master"%>

    正确答案:B

  • 第6题:

    You develop a Web application. Your application contains two settings in the Web.config file. You deploy your application to production. You need to modify the application settings in the production environment without manually editing the XML markup in the Web.config file. What should you do? ()

    • A、Modify the application settings by using the Web Site Administration Tool.
    • B、Modify the application settings by using the Visual Studio property page editor for the project.
    • C、Modify the application settings by using the resource editor.
    • D、Modify the application settings by using the Visual Studio start options editor.

    正确答案:A

  • 第7题:

    You work as a Web Application Developer at Certkiller.com. You make use of .NET Frameworkv3.5 to create an ASP.NET application.  You decide to create a Web user control named KingShare. KingShare is compiled as a library.The code segment below is written for KingShare. (The line numbers is included for reference purposes) 1 protected override void OnInit(EventArgs e) 2 { 3 base.OnInit(e); 4 5 }  The master pages in the application contains the <%@ Master Language="C#" EnableViewState="false" %> directive. You receive an instruction from the network administratorto make sure that the KingShare state is able to persist on the pages that reference the masterpage. You should thus identify the appropriate code segment you need to add to line 4 to achievethis.  What should you do?()

    • A、Your best option would be to insert Page.RegisterRequiresPostBack(this)
    • B、Your best option would be to insert Page.RegisterRequiresControlState(this)
    • C、Your best option would be to insert Page.UnregisterRequiresControlState(this)
    • D、Your best option would be to insert Page.RegisterStartupScript("KingShare","server")

    正确答案:B

  • 第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 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
    解析: 暂无解析

  • 第10题:

    单选题
    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
    解析: 暂无解析

  • 第11题:

    单选题
    You configure Microsoft Internet Explorer 7 with a Really Simple Syndication (RSS) subscription to MSN Entertainment on your computer.  Your RSS subscription Web page fails to show the information that the RSS feed Web page displays from MSN Entertainment.  You need to ensure that Internet Explorer displays the current content from the RSS feed.  What should you do?()
    A

    Enable the feed reading view in the RSS feed settings.

    B

    Configure the RSS feed properties to use the minimum interval value.

    C

    Configure the RSS feed properties to keep only the most recent 50 items.

    D

    Configure the RSS feed properties to automatically download attached files.


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

  • 第12题:

    单选题
    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
    解析: 暂无解析

  • 第13题:

    is an identifier of a web page。

    A.ASP

    B.HTML

    C.HTTPS

    D.URL


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

  • 第14题:

    You configure Microsoft Internet Explorer 7 with a Really Simple Syndication (RSS) subscription to MSN Entertainment on your computer. Your RSS subscription Web page fails to show the information that the RSS feed Web page displays from MSN Entertainment. You need to ensure that Internet Explorer displays the current content from the RSS feed.What should you do?()

    A.A

    B.B

    C.C

    D.D


    参考答案:B

  • 第15题:

    Every page of your web site must include a common set of navigation menus at the top of the page. Thismenu is static HTML and changes frequently,so you have decided to use JSP’s static import mechanism. Which JSP code snippet accomplishes this goal?()

    • A、<%@ import file=’/common/menu.html’ %>
    • B、<%@ page import=’/common/menu.html’ %>
    • C、<%@ import page=’/common/menu.html’ %>
    • D、<%@ include file=’/common/menu.html’ %>
    • E、<%@ page include=’/common/menu.html’ %>

    正确答案:D

  • 第16题:

    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

  • 第17题:

    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

  • 第18题:

    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

  • 第19题:

    单选题
    Every page of your web site must include a common set of navigation menus at the top of the page. Thismenu is static HTML and changes frequently,so you have decided to use JSP’s static import mechanism. Which JSP code snippet accomplishes this goal?()
    A

    <%@ import file=’/common/menu.html’ %>

    B

    <%@ page import=’/common/menu.html’ %>

    C

    <%@ import page=’/common/menu.html’ %>

    D

    <%@ include file=’/common/menu.html’ %>

    E

    <%@ page include=’/common/menu.html’ %>


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

  • 第20题:

    单选题
    You are using Microsoft Windows Internet Explorer 7 on your computer. You need to print only the graphic on a Web page.  How should you print the graphic?()
    A

    Use the Page Setup option and select only the graphic.

    B

    Use the Print Preview feature and select only the graphic.

    C

    Use the Print option from the File menu.

    D

    Use the Microsoft XML Paper Specification (XPS) Document image printer.


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

  • 第21题:

    单选题
    You need to verify whether your computer can obtain all of the latest operating system updates.  What should you do? ()
    A

    Confirm that your computer has a Microsoft Windows Experience Index base score above 3.0. 

    B

    Run Microsoft Windows Vista Upgrade Advisor.

    C

    Configure Windows Defender to detect updates before scanning.

    D

    Validate your Windows installation from the Microsoft Windows Genuine Advantage Web page.


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

  • 第22题:

    单选题
    Your web page includes a Java SE v1.5 applet with the following declaration: 11. 13. 14. Which HTTP method is used to retrieve the applet code?()
    A

    GET

    B

    PUT

    C

    POST

    D

    RETRIEVE


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

  • 第23题:

    多选题
    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
    解析: 暂无解析

  • 第24题:

    单选题
    To take advantage of the capabilities of modern browsers that use web standards, such as XHTML andCSS, your web application is being converted from simple JSP pages to JSP Document format. However,one of your JSPs, /scripts/screenFunctions.jsp, generates a JavaScript file. This file is included in severalweb forms to create screen-specific validation functions and are included in these pages with the followingstatement: 10. 11. 14. 15. Which JSP code snippet declares that this JSP Document is a JavaScript file?()
    A

    <%@ page contentType=’application/javascript’ %>

    B

    <jsp:page contentType='application/javascript' />

    C

    <jsp:document contentType='application/javascript' />

    D

    <jsp:directive.page contentType='application/javascript' />

    E

    No declaration is needed because the web form XHTML page already declares the MIME type of the /scripts/screenFunctions.jsp file in the <script> tag.


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