Advance JAVA Programming (3360701) MCQs

MCQs of Java Server Pages (JSP)

Showing 11 to 20 out of 34 Questions
11.
What is correct syntax of _jspService method in JSP?
JSP મા _jspService મેથડ ની સાચી સિન્ટેક્ષ શું છે?
(a) void _jspService()
(b) void _jspService(HttpServletRequest req, HttpServletResponse res)
(c) void _jspService(HttpServletRequest, HttpServletResponse)
(d) void jspService()
Answer:

Option (b)

12.
How many implicit objects available in JSP?
JSP મા કેટલા ઈમ્પલીસીટ ઓબ્જેક્ટ આવેલ છે?
(a) 7
(b) 8
(c) 9
(d) 10
Answer:

Option (c)

13.

What is output of following code?

<%session.setAttribute("name","Demo");%>
<%=session.getAttribute("Demo")%>

નીચે આપેલ કોડ નું આઉટપુટ શું આવશે?

<%session.setAttribute("name","Demo");%>
<%=session.getAttribute("Demo")%>
(a)

Demo

(b)

name

(c)

null

(d)

None of given

આપેલમાંથી એકપણ નહિ

Answer:

Option (c)

14.
Which of following is JSP implicit object of type ServletContext?
નીચે આપેલ માંથી કયો ServletContext ટાઈપ નો JSP ઈમ્પલીસીટ ઓબ્જેક્ટ છે?
(a) config
(b) application
(c) ServletContext
(d) Context
Answer:

Option (b)

15.
Which of following is JSP implicit object of type ServletConfig?
નીચે આપેલ માંથી કયો ServletConfig ટાઈપ નો JSP ઈમ્પલીસીટ ઓબ્જેક્ટ છે?
(a) config
(b) application
(c) ServletConfig
(d) None of Above
ઉપરના માંથી એકપણ નહિ
Answer:

Option (a)

16.
Which tag is used to execute java source code in JSP?
Java સોર્સ કોડ ને JSP મા એક્ઝીક્યુટ કરવા ક્યા ટેગ નો ઉપયોગ થાય છે.
(a) Directives
Directives (ડાયરેકટીવ)
(b) Expression
Expression (એક્ષપ્રેશન)
(c) Scriptlet
Scriptlet (સ્ક્રીપ્ટલેટ)
(d) Declaration
Declaration(ડીકલેરેશન)
Answer:

Option (c)

17.

Which of following is scripting elements in JSP?

નીચે આપેલ માંથી ક્યા JSP સ્ક્રિપ્ટીંગ એલિમેન્ટ છે?

(a)

Directives

Directives (ડાયરેકટીવ)

(b)

Expression

Expression (એક્ષપ્રેશન)

(c)

Declaration

Declaration(ડીકલેરેશન)

(d)

All of given

આપેલ બધા જ

Answer:

Option (d)

18.

Directive syntax is _________.

Directive (ડીરેક્ટીવ) ની સિન્ટેક્ષ _________ છે.

(a)

<%@ directive %>

(b)

<%! directive %>

(c)

<%= directive %>

(d)

None of given

આપેલમાંથી એકપણ નહિ

Answer:

Option (a)

19.
Expression syntax is ________.
Expression (એક્ષપ્રેશન) ની સિન્ટેક્ષ _________ છે.
(a) <%@ expression%>
(b) <%! expression%>
(c) <%= expression %>
(d) <%-- expression%>
Answer:

Option (c)

20.
Declaration syntax is _______.
Declaration (ડીકલેરેશન) ની સિન્ટેક્ષ _________ છે.
(a) <%! declaration%>
(b) <%= declaration%>
(c) <%-- declaration%>
(d) <%@ declaration%>
Answer:

Option (a)

Showing 11 to 20 out of 34 Questions