niusouti.com
更多“A clickable string or graphic that points to another Web page or document is called(18)。A. ”相关问题
  • 第1题:

    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".


    参考答案:B, D

  • 第2题:

    is a collection of web pages connected together with(67). Each document or page has a unique address that allows you to find it among the millions of other documents on the Web. The address is called a(68)(URL)or sometimes a Uniform. Resource Indicator(URL). When you chose a new link by clicking on it or by typing it into the address field your(69)sends a request for that document and displays it on the screen. That link can be to a different section of the current document, another document on the same website as the original or on another website anywhere in the world. Web pages are designed using(70)or HTML.

    A.World Wild Web

    B.World Wide Web

    C.Web Wild World

    D.Word Wide Web


    正确答案:B
    解析:WoddWideWeb:万维网

  • 第3题:

    means "Any HTML document on an HTTP server".

    A.Web Server

    B.Web Browser

    C.Web Site

    D.Web Page


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

  • 第4题:

    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

  • 第5题:

    ( )analysis emphasizes the drawing of pictorial system models to document and validate both existing and/or proposed systems.Ultimately,the system models become the( )for designing and constructing an improved system.( )is such a technique.The emphasis in this technique is process-centered.Systems analysts draw a series of process models called( )、(请作答此空)is another such technique that integrates data and process concerns into constructs called objects.

    A.Structured analysis
    B.Information Engineering
    C.Discovery Prototyping
    D.Object-Oriented analysis

    答案:D
    解析:
    模型驱动的分析方法强调通过绘制图形化的系统模型来说明和验证已有的或待开发的系统。这些系统模型最终会成为设计和构建改进后的系统的蓝图。结构化分析就是这样一种方法,它是以过程为中心的。在结构化分析方法中,系统分析员所绘制的一系列过程模型被称为DFD。面向对象分析是另外一种模型驱动的分析方法,它将数据和过程统一到了一个被称为"对象"的结构中。

  • 第6题:

    Which the JSTL code snippet can be used to import content from another web resource?()

    • A、 <c:import url=*foo.jsp”/> 
    • B、 <c:import page=*foo.jsp”/> 
    • C、 <c:include url=*foo.jsp”/> 
    • D、 <c:include page=*foo.jsp”/> 
    • E、 Importing cannot be done in JSTL. A standard action must be used instead.

    正确答案:A

  • 第7题:

    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

  • 第8题:

    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

  • 第9题:

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

  • 第10题:

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

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

  • 第13题:

    analysis emphasizes the drawing of pictorial system models to document and validate both existing and/or proposed systems. Ultimately, the system models become the(72)for designing and constructing an improved system.(73)is such a technique. The emphasis in this technique is process-centered. Systems analysts draw a series of process models called(74).(75)is another such technique that integrates data and process concerns into constructs called objects.

    A.Prototyping

    B.Accelerated

    C.Model-driven

    D.Iterative


    正确答案:C

  • 第14题:

    ______ means "Any HTML document on an HTTP Server".

    A.Web Server

    B.Web page

    C.Web Browser

    D.Web site


    正确答案:B
    解析:译文的含义是:Web页面()表示“HTTP服务器上的任意HTML文档”。A、B、C、D各选项的意思分别是:Web服务、Web页面、Web浏览器、Web站点。在HTTP服务器上的每个HTML文档都是一个Web页面。所以,本题应该选择B。

  • 第15题:

    A(n) ______ document is an interlinked system of documents in which a user may iump from one document to another in a nonlinear,associative way.

    A.Hipertext

    B.Web

    C.Html

    D.XML


    正确答案:A
    解析:超文本文档是一种链接的文档系统,用户能够以非线性关联的方式从一个文档跳转到另一个文档。

  • 第16题:

    There are many forms of online advertising. ______ is a small rectangular object on a Web page that displays a stationary or moving graphic and includes a hyperlink to the advertiser's Web site.
    A.A text ad
    B.A site sponsorship ad
    C.A pop-up ad
    D.A banner ad


    答案:D
    解析:

  • 第17题:

    A web application contains a tag file called beta.tag in /WEB-INF/tags/alpha. A JSP page called sort.jspexists in the web application and contains only this JSP code: 1.<%@ taglib prefix="x" 2.tagdir="/WEB-INF/tags/alpha" %> 3. The sort.jsp page is requested. Which two are true?()

    • A、Tag files can only be accessed using a tagdir attribute.
    • B、The sort.jsp page translates successfully and invokes the tag defined by beta.tag.
    • C、The sort.jsp page produces a translation error because a taglib directive must always have a uriattribute.
    • D、Tag files can only be placed in /WEB-INF/tags, and NOT in any subdirectories of /WEB- INF/tags.
    • E、The tagdir attribute in line 2 can be replaced by a uri attribute if a TLD referring to beta.tag is createdand added to the web application.

    正确答案:B,E

  • 第18题:

    You want to create a valid directory structure for your Java EE web application, and your application usestag files and a JAR file. Which three must be located directly in your WEB-INF directory(NOT in asubdirectory of WEB-INF)?()

    • A、The JAR file
    • B、A directory called lib
    • C、A directory called tags
    • D、A directory called TLDs
    • E、A directory called classes
    • F、A directory called META-INF

    正确答案:B,C,E

  • 第19题:

    You are implementing a Web page that displays text that was typed by a user. You need to display the user input in the Web page so that a cross-site scripting attack will be prevented. What should you do?()

    • A、Call document.write.
    • B、Call Response.Write.
    • C、Call HttpUtility.UrlEncode.
    • D、Call HttpUtility.HtmlEncode.

    正确答案:D

  • 第20题:

    多选题
    A web application contains a tag file called beta.tag in /WEB-INF/tags/alpha. A JSP page called sort.jspexists in the web application and contains only this JSP code: 1. 3. The sort.jsp page is requested. Which two are true?()
    A

    Tag files can only be accessed using a tagdir attribute.

    B

    The sort.jsp page translates successfully and invokes the tag defined by beta.tag.

    C

    The sort.jsp page produces a translation error because a taglib directive must always have a uriattribute.

    D

    Tag files can only be placed in /WEB-INF/tags, and NOT in any subdirectories of /WEB- INF/tags.

    E

    The tagdir attribute in line 2 can be replaced by a uri attribute if a TLD referring to beta.tag is createdand added to the web application.


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

  • 第21题:

    单选题
    Which JSTL code snippet can be used to import content from another web resource?()
    A

    <c:import url=foo.jsp/>

    B

    <c:import page=foo.jsp/>

    C

    <c:include url=foo.jsp/>

    D

    <c:include page=foo.jsp/>


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

  • 第22题:

    单选题
    Which the JSTL code snippet can be used to import content from another web resource?()
    A

     <c:import url=*foo.jsp”/> 

    B

     <c:import page=*foo.jsp”/> 

    C

     <c:include url=*foo.jsp”/> 

    D

     <c:include page=*foo.jsp”/> 

    E

     Importing cannot be done in JSTL. A standard action must be used instead.


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

  • 第23题:

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