What is the first statement in jsp page.

Answers were Sorted based on User's Feedback



What is the first statement in jsp page...

Answer / sandeep m

First statement in jsp can be anything such as a scriptlet
(<%.......%>), expression <%= .......%>), declaration
(<! ........>) or template text or java script.

Is This Answer Correct ?    17 Yes 3 No

What is the first statement in jsp page...

Answer / kalyan

<%@ page ......%> --->it is import statement used in jsp.
<%! declaration (intilization) %>

<% Script let code %> ---->it copied into same java
code we enter into the scriptlet code ,it cant change th
code.

<%= Expression code %> ----->it uses a expression code

Is This Answer Correct ?    8 Yes 0 No

What is the first statement in jsp page...

Answer / paku

page

Is This Answer Correct ?    7 Yes 2 No

What is the first statement in jsp page...

Answer / amutha

<%@ page language="java"------- %>
or
Any valid html tags or scriptlet

Is This Answer Correct ?    5 Yes 0 No

What is the first statement in jsp page...

Answer / paku

(<%.......%>), expression <%= .......%>), declaration
(<! ........>) or template text or java script.

Is This Answer Correct ?    2 Yes 0 No

What is the first statement in jsp page...

Answer / nilofar

<%@ page language="java"%>

Is This Answer Correct ?    2 Yes 1 No

What is the first statement in jsp page...

Answer / srikanth tummala

in any or any type of program in java the first statement
should be "package".

Is This Answer Correct ?    1 Yes 12 No

Post New Answer

More Servlets Interview Questions

How is the get () method different from the post() method?

0 Answers  


Is that servlet is pure java object or not?

0 Answers  


What is a servlet context object?

0 Answers  


What is servlet in simple terms?

0 Answers  


What are sessions in servlets?

0 Answers  






request parameter how to find whether a parameter exists in the request object?

0 Answers  


What's the architecture of a servlet package?

0 Answers  


Is Servlet Class Thread safe?????? How to make servlet Thread safe ???

4 Answers   Cognizant,


Can we use javascript in Servlets?

2 Answers   Wipro,


What is servlet looping or chaining?

0 Answers  


How session tracking can be achieved, if your browser doesn't support cookies (or) if cookies are disabled?

2 Answers  


What is difference between GenericServlet and HttpServlet?

0 Answers  


Categories