architecture Online Quiz - 16
Description: architecture Online Quiz - 16 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: architecture |
Which of the following is Data Definition Language?
Which type of Statement can execute parameterized queries?
Which packages contain the JDBC classes?
public class NumbPlay { int x=5; public static void main(String[] args) { new NumbPlay().doPlay(); } void doPlay() { int x; System.out.println(++x); } } The output is
try {int x = Integer.parseInt(“one”);} Which of the following could be used to create appropriate catch block ?
What are the life-cycle methods of JSP?
What do you understand by JSP translation?
What are the J2EE clients from the below list?
Can we have pure java code inside JSP
Every Custom Servlet extends javax.servlet.http.HttpServlet class
Web container translates JSP to Servlet for every request of the JSP
A JSP page can include another JSP page but not an HTML page
Which are implicit objects in a JSP?
Difference between GET & POST method. (Choose the right answer)
A servlet instance (object) is created during the execution of JSP.