Which are the JSP scripting elements below?
Declarations
Scriptlets
Expressions
Include
How many JSP scripting elements are there?
5
3
4
2
Fullform of a JSP ?
Java servlet paper
Java server Paper
Java Server Pages
None
What are the common mechanisms used for session tracking?
Cookies
URL- rewriting
sessions
SSL sessions
Explain the life cycle methods of a Servlet?
init(ServletConfig config)
service( ServletRequest req, ServletResponse res)
destroy( ServletRequest req, ServletResponse res)
destroy()
A doGet() method is limited with 2k of data to be sent?
True
False
Inside which HTML element do we put the JavaScript?
What is the correct JavaScript syntax to write "Hello World"?
"Hello World"
document.write("Hello World")
response.write("Hello World")
("Hello World")
How do you write "Hello World" in an alert box?
alertBox="Hello World"
msgBox("Hello World")
alertBox("Hello World")
alert("Hello World")
How do you create a function?
function myFunction()
function:myFunction()
function=myFunction()
myFunction()