In moving forward, a ship imparts forward motion to the water at the stems, this is known as _____.A.the speed of the vesselB.the speed of the propellerC.the wakeD.the wake fraction

题目

In moving forward, a ship imparts forward motion to the water at the stems, this is known as _____.

A.the speed of the vessel

B.the speed of the propeller

C.the wake

D.the wake fraction


相似考题
更多“In moving forward, a ship imparts forward motion to the water at the stems, this is known ”相关问题
  • 第1题:

    forward 和redirect的区别


    正确答案:

     

    forward 是服务器请求资源,服务器直接访问目标地址的URL,把那个URL 的响应内容

    读取过来,然后把这些内容再发给浏览器,浏览器根本不知道服务器发送的内容是从

    哪儿来的,所以它的地址栏中还是原来的地址。

    redirect 就是服务端根据逻辑,发送一个状态码,告诉浏览器重新去请求那个地址,一般来

    说浏览器会用刚才请求的所有参数重新请求,所以session,request 参数都可以获取。

  • 第2题:


    A.reject
    B.receive
    C.deny
    D.forwarD.

    答案:D
    解析:

  • 第3题:

    forward(100)等价于backward(-100)。()


  • 第4题:

    JAVA SERVLET API中forward() 与redirect()的区别?


    正确答案:

     

    前者仅是容器中控制权的转向,在客户端浏览器地址栏中不会显示出转向后的地址;后者则是完全的跳转,浏览器将会得到跳转的地址,并重新发送请求链接。这样,从浏览器的地址栏中可以看到跳转后的链接地址。所以,前者更加高效,在前者可以满足需要时,尽量使用forward()方法,并且,这样也有助于隐藏实际的链接。在有些情况下,比如,需要跳转到一个其它服务器上的资源,则必须使用sendRedirect()方法。

  • 第5题:

    选项中哪一个是forward动作标记()。

    A.<jsp:useBean>

    B.<jsp:getProperty>

    C.<jsp:forward>

    D.<jsp:include>


    A

  • 第6题:

    能够保留请求作用域中数据的转向方式是 ()

    A.response.forward()

    B.response.sendRedirect()

    C.session.getRequestDispatcher().forward(request,response)

    D.request.getRequestDispatcher().forward(request,response)


    request.getRequestDispatcher().forward(request,response)