Description: programming languages Online Quiz - 117 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
How do I send email from my Servlet?
Method by which sensitive data is sent?
What are Cookies
Advantages of MVC
In MVC2 flow is controlled by single servlet
The controller part includes
The View part of MVC includes
The model component includes
MVC1 architecture is
Struts framework is based on ---- architeture
Expansion of MVC architecture
A controller is the link between a user and the system.
What are the drawbacks of Struts?
core class of the Struts Framework
what are the various types of Reporting
Given: 1. public class Delta { 2. static boolean foo(char c) { 3. System.out.print(c); 4. return true; 5. } 6. public static void main( String[] argv ) { 7. int i =0; 8. for ( foo(‘A’); foo(‘B’)&&(i<2); foo(‘C’)){ 9. i++ ; 10. foo(‘D’); 12. } 13. } 14. } What is the result?
Given: 11. int x = 3; 12. int y = 1; 13. if (x = y) { 14. System.out.println(“x = “ + x); 15. } What is the result?
You want a class to have access to members of another class in the same package. Which is the most restrictive access that accomplishes this objective?
Given: 11. int i = 1,j = 10; 12. do { 13. if(i>j) { 14. break; 15. } 16. j--; 17. } while (++i <5); 18. System.out.println(“i =” +i+” and j = “+j); What is the result?