A developer for the Company.com web site has been told that users may turn off cookie support in their browsers. What must the developer do to ensure that these customers can still use the web application?()  A、 The developer must ensure that every URL is

题目

A developer for the Company.com web site has been told that users may turn off cookie support in their browsers. What must the developer do to ensure that these customers can still use the web application?()  

  • A、 The developer must ensure that every URL is properly encoded using the appropriate URL rewriting APIs
  • B、 The developer must provide an alternate mechanism for managing sessions and abandon theHttpSession mechanism entirely
  • C、 The developer can ignore this issue. Web containers are required to support automatic URL rewriting when cookies are not supported
  • D、 The developer must ass the string ?id= to the end of every URL to ensure that the conversion with the browser can continue.

相似考题
参考答案和解析
正确答案:A
更多“A developer for̳”相关问题
  • 第1题:

    A developer is designing a web application which extensively uses EJBs and JMS.  The developer finds that there is a lot of duplicated code to build the JNDI contexts to access the beans and queues. Further, because of the complexity, there are numerous errors in the code.  Which J2EE design pattern provides a solution for this problem?()

    • A、 Command
    • B、 Transfer object
    • C、 Service locator
    • D、 Session Façade
    • E、 Business delegate
    • F、 Data access object

    正确答案:C

  • 第2题:

    开发者(developer)是唯一一类需要特殊权限组完成自己工作的数据库用户


    正确答案:正确

  • 第3题:

    Which of the following tools for DB2 V9 allows a user to create and debug a SQL stored procedure?()

    • A、Control Center
    • B、Development Center
    • C、Developer Workbench
    • D、Stored Procedure Builder

    正确答案:C

  • 第4题:

    A developer has created a special servlet that is responsible for generating XML content that is sent to adata warehousing subsystem. This subsystem uses HTTP to request these large data files, which are compressed by the servlet to save internal network bandwidth. The developer has received a request frommanagement to create several more of these data warehousing servlets. The developer is about to copyand paste the compression code into each new servlet. Which design pattern can consolidate thiscompression code to be used by all of the data warehousing servlets?()

    • A、Facade
    • B、View Helper
    • C、Transfer Object
    • D、Intercepting Filter
    • E、Composite Facade

    正确答案:D

  • 第5题:

    A developer is designing a web application that makes many fine-grained remote data requests for eachclient request. During testing, the developer discovers that the volume of remote requests significantlydegrades performance of the application. Which design pattern provides a solution for this problem?()

    • A、Flyweight
    • B、Transfer Object
    • C、Service Locator
    • D、Dispatcher View
    • E、Business Delegate
    • F、Model-View-Controller

    正确答案:B

  • 第6题:

    You are the desktop administrator for your company. Your company’s software developers use Windows XP Professional and IIS on their client computers to develop Web-based applications. All client computers use Microsoft Internet Explorer 6. 0 or later as their Web browser. One of the developers reports that he can no longer access the Web-based application on his desktop by using his Web browser. When you attempt to access the application by using your Web browser, you receive the following error message: “Cannot find server or DNS Error.” You verify that the World Wide Web Publishing Service is started on the developer’s computer. You also verify that you are using the correct URL to access the developer’s computer by using your Web browser. You need to ensure that the developer can access the Web application by using his Web browser. How should you configure the developer’s computer?() 

    • A、Start the default Web site.
    • B、Start the IIS Admin Service.
    • C、Run the IPconfig /registerdns command.
    • D、In the default Web site properties,disable the host header setting.

    正确答案:A

  • 第7题:

    单选题
    A developer has created a special servlet that is responsible for generating XML content that is sent to adata warehousing subsystem. This subsystem uses HTTP to request these large data files, which are compressed by the servlet to save internal network bandwidth. The developer has received a request frommanagement to create several more of these data warehousing servlets. The developer is about to copyand paste the compression code into each new servlet. Which design pattern can consolidate thiscompression code to be used by all of the data warehousing servlets?()
    A

    Facade

    B

    View Helper

    C

    Transfer Object

    D

    Intercepting Filter

    E

    Composite Facade


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

  • 第8题:

    多选题
    使用PL/SQL Developer可以创建和修改的程序单元有()。
    A

    函数

    B

    过程

    C

    类型

    D

    触发器


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

  • 第9题:

    单选题
    A developer is designing a web application which extensively uses EJBs and JMS.  The developer finds that there is a lot of duplicated code to build the JNDI contexts to access the beans and queues. Further, because of the complexity, there are numerous errors in the code.  Which J2EE design pattern provides a solution for this problem?()
    A

     Command

    B

     Transfer object

    C

     Service locator

    D

     Session Façade

    E

     Business delegate

    F

     Data access object


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

  • 第10题:

    单选题
    A developer for the Company.com web site has been told that users may turn off cookie support in their browsers. What must the developer do to ensure that these customers can still use the web application?()
    A

     The developer must ensure that every URL is properly encoded using the appropriate URL rewriting APIs

    B

     The developer must provide an alternate mechanism for managing sessions and abandon theHttpSession mechanism entirely

    C

     The developer can ignore this issue. Web containers are required to support automatic URL rewriting when cookies are not supported

    D

     The developer must ass the string ?id= to the end of every URL to ensure that the conversion with the browser can continue.


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

  • 第11题:

    单选题
    Which statements about the garbage collection are true?()
    A

     The program developer must create a thread to be responsible for free the memory.

    B

     The garbage collection will check for and free memory no longer needed.

    C

     The garbage collection allow the program developer to explicity and immediately free the memory.

    D

     The garbage collection can free the memory used java object at expect time.


    正确答案: A
    解析: Java语言将内存分配和释放的工组交给了自己,程序员不必做这些工作,它提供一个系统级的线程跟踪每个内存的分配,在JVM的空闲处理中,垃圾收集线程将检查和释放不再使用的内存(即可以被释放的内存)。垃圾收集的过程在java程序的生存期中是自动的,不需要分配和释放内存,也避免了内存泄漏。可以调用System.gc()方法建议(suggest)JVM执行垃圾收集以使得可被释放的内存能立即被使用,当此方法返回的时候,JVM已经做了最大的努力从被丢弃的对象上回收内存空间。程序员不能指定收集哪些内存,一般而言也不用关心这个问题,除非是程序的内存消耗很大,特别是有很多临时对象时可以“建议“进行垃圾收集以提高可用内存。需要指出的是调用System.gc()方法不能保证JVM立即进行垃圾收集,而只能是建议,因为垃圾收集线程的优先级很低(通常是最低的)。

  • 第12题:

    单选题
    A developer is designing a web application which extensively uses EJBs and JMS. The developer finds thatthere is a lot of duplicated code to build the JNDI contexts to access the beans and queues. Further,because of the complexity, there are numerous errors in the code. Which J2EE design pattern provides asolution for this problem?()
    A

    Command

    B

    Transfer Object

    C

    Service Locator

    D

    Session Facade

    E

    Business Delegate


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

  • 第13题:

    以下哪几项是Oracle客户端连接工具()

    • A、OEM
    • B、SQL*PLUS
    • C、NETCA
    • D、PLSQL DEVELOPER

    正确答案:A,B,D

  • 第14题:

    Given the security constraint in a DD:// 101. 102. 103.Foo 104./Bar/Baz/* 105.POST 106. 107. 108.DEVELOPER 109. 110. And given that "MANAGER" is a valid role-name,which four are true for this security constraint?()

    • A、MANAGER can do a GET on resources in the /Bar/Baz directory.
    • B、MANAGER can do a POST on any resource in the /Bar/Baz directory.
    • C、MANAGER can do a TRACE on any resource in the /Bar/Baz directory.
    • D、DEVELOPER can do a GET on resources in the /Bar/Baz directory.
    • E、DEVELOPER can do only a POST on resources in the /Bar/Baz directory.
    • F、DEVELOPER can do a TRACE on any resource in the /Bar/Baz directory.

    正确答案:A,C,D,F

  • 第15题:

    Where should a Developer go to freely manipulate inline style coding for an object?()

    • A、Design
    • B、Source
    • C、Properties
    • D、Controls

    正确答案:B

  • 第16题:

    A developer is designing a web application that makes many fine-grained remote data requests for each client request. During testing, the developer discovers that the volume of remote requests significantly degrades performance of the application. Which design pattern provides a solution for this problem?()

    • A、 Flyweight
    • B、 Transfer Object
    • C、 Service Locator
    • D、 Dispatcher View
    • E、 Business Delegate
    • F、 Model-View-Controller

    正确答案:B

  • 第17题:

    Which two IDEs are supported development environments for WebLogic Server 12c in version 12.1.1?()

    • A、Websphere Developer Studio
    • B、NetBeans
    • C、InteliJ IDIA
    • D、JDeveloper
    • E、Eclipse
    • F、WebLogic Workshop

    正确答案:B,E

  • 第18题:

    单选题
    You are the desktop administrator for your company. Your company’s software developers use Windows XP Professional and IIS on their client computers to develop Web-based applications. All client computers use Microsoft Internet Explorer 6. 0 or later as their Web browser. One of the developers reports that he can no longer access the Web-based application on his desktop by using his Web browser. When you attempt to access the application by using your Web browser, you receive the following error message: “Cannot find server or DNS Error.” You verify that the World Wide Web Publishing Service is started on the developer’s computer. You also verify that you are using the correct URL to access the developer’s computer by using your Web browser. You need to ensure that the developer can access the Web application by using his Web browser. How should you configure the developer’s computer?()
    A

    Start the default Web site.

    B

    Start the IIS Admin Service.

    C

    Run the IPconfig /registerdns command.

    D

    In the default Web site properties,disable the host header setting.


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

  • 第19题:

    单选题
    A developer is designing a web application that makes many fine-grained remote data requests for eachclient request. During testing, the developer discovers that the volume of remote requests significantlydegrades performance of the application. Which design pattern provides a solution for this problem?()
    A

    Flyweight

    B

    Transfer Object

    C

    Service Locator

    D

    Dispatcher View

    E

    Business Delegate

    F

    Model-View-Controller


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

  • 第20题:

    单选题
    Squeaky Beans Inc. hired an outside consultant to develop their web application. To finish the job quickly, the consultant created several dozen JSP pages that directly communicate with the database. The Squeaky business team has since purchased a set of business objects to model their system, and the Squeaky developer charged with maintaining the web application must now refactor all the JSPs to work with the new system.  Which pattern can the developer use to solve this problem?()
    A

     Transfer Object

    B

     Service Locator

    C

     Intercepting Filter

    D

     Business Delegate


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

  • 第21题:

    多选题
    Which two IDEs are supported development environments for WebLogic Server 12c in version 12.1.1?()
    A

    Websphere Developer Studio

    B

    NetBeans

    C

    InteliJ IDIA

    D

    JDeveloper

    E

    Eclipse

    F

    WebLogic Workshop


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

  • 第22题:

    单选题
    Squeaky Beans Inc. hired an outside consultant to develop their web application. To finish the job quickly,the consultant created several dozen JSP pages that directly communicate with the database. The Squeakybusiness team has since purchased a set of business objects to model their system, and the Squeaky developer charged with maintaining the web application must now refactor all the JSPs to work with the newsystem. Which pattern can the developer use to solve this problem?()
    A

    Transfer Object

    B

    Service Locator

    C

    Intercepting Filter

    D

    Business Delegate


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

  • 第23题:

    判断题
    开发者(developer)是唯一一类需要特殊权限组完成自己工作的数据库用户
    A

    B


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