人気の面接質問と回答・オンラインテスト
面接対策、オンラインテスト、チュートリアル、ライブ練習のための学習プラットフォーム

集中型学習パス、模擬テスト、面接向けコンテンツでスキルを伸ばしましょう。

WithoutBook は、分野別の面接質問、オンライン練習テスト、チュートリアル、比較ガイドをひとつのレスポンシブな学習空間にまとめています。

面接準備

模擬試験

ホームページに設定

このページをブックマーク

メールアドレスを登録

JSP 面接の質問と回答

Test your skills through the online practice test: JSP Quiz Online Practice Test

関連する比較

関連する比較

JSF vs JSPJSP vs ServletsJSP vs ASP
PHP vs JSP

質問 16. What is the difference between JSP and Servlets?

JSP is used mainly for presentation only. A JSP can only be HttpServlet that means the only supported protocol in JSP is HTTP. But a servlet can support any protocol like HTTP, FTP, SMTP etc.

役に立ちましたか? コメントを追加 コメントを見る
 

質問 17. Difference between GET and POST.

In GET your entire form submission can be encapsulated in one URL, like a hyperlink. query length is limited to 255 characters, not secure, faster, quick and easy. The data is submitted as part of URL.

In POST data is submitted inside body of the HTTP request. The data is not visible on the URL and it is more secure.

役に立ちましたか? コメントを追加 コメントを見る
 

質問 18. What is a output comment?

A comment that is sent to the client in the viewable page source.The JSP engine handles an output comment as uninterpreted HTML text, returning the comment in the HTML output sent to the client. You can see the comment by viewing the page source from your Web browser.

JSP Syntax:

<! comment [ <%= expression %> ] >

Example 1

<! This is a commnet sent to client on

<%= (new java.util.Date()).toLocaleString() %>

>

役に立ちましたか? コメントを追加 コメントを見る
 

質問 19. What is a Hidden Comment?

A comments that documents the JSP page but is not sent to the client. The JSP engine ignores a hidden comment, and does not process any code within hidden comment tags. A hidden comment is not sent to the client, either in the displayed JSP page or the HTML page source. The hidden comment is useful when you want to hide or "comment out" part of your JSP page.

You can use any characters in the body of the comment except the closing %> combination. If you need to use %> in your comment, you can escape it by typing %>.

JSP Syntax

<% comment %>

Examples

<%@ page %>

<html>

<head><title>A Hidden Comment </title></head>

<body>

<% This comment will not be visible to the colent in the page source %>

</body>

</html>

役に立ちましたか? コメントを追加 コメントを見る
 

質問 20. How do I include static files within a JSP page?

Static resources should always be included using the JSP include directive. This way, the inclusion is performed just once during the translation phase. Do note that you should always supply a relative URL for the file attribute. Although you can also include static resources using the action, this is not advisable as the inclusion is then performed for each and every request.

役に立ちましたか? コメントを追加 コメントを見る
 

ユーザー評価で最も役立つ内容:

著作権 © 2026、WithoutBook。