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 of the following are true ?
Which of the following is false wrt Transactions ?
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 ?
Which of the following method names follow the JavaBeans standard ?
What are the life-cycle methods of JSP?
What do you understand by JSP translation?
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
What are the different scopes available?
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.
A servlet can handle multiple requests concurrently.