what are the design patterns in struts?
Answer / nav dev
Design Patterns
1) Front Controller //Action Servlet
2) Application Controller// Request process
3) DAO //Data Access Object
40 DTO //Data Transfer Object from one layer to onther
etc
| Is This Answer Correct ? | 2 Yes | 0 No |
Is void a return type?
What is the multilevel inheritance. and also give the Example of it ?
Wha is the output from system.out.println(“hello”+null); ?
Why declare Main() inside the class in java ?
Can we use string in the switch case?
What is the relationship between clipping and repainting under awt?
abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }
Can you access the private method from outside the class?
What is a default constructor and also define copy contrucyor?
What does microservices mean?
What is the advantage of functional interface in java 8?
How to make a read-only class in java?