Analyst Integration Question:

Download Job Interview Questions and Answers PDF

What does the V in MVC stand for, and what does it signify?

Integration Programmer Interview Question
Integration Programmer Interview Question

Answer:

V stands for View in MVC pattern. View is what user sees e.g. web pages. This is a very important design pattern of web development which is based upon segregation of concern, so that each area can be modified without impacting other areas. In Java world, there are lots of open source framework which provides implementation of MVC pattern e.g. Struts 2 and Spring MVC. By the way, M stands for model and C stands for controller. Modes are actual business objects e.g. User, Employee, Order while controller is used to route request to correct processor.

Download Integration Programmer Interview Questions And Answers PDF

Previous QuestionNext Question
What is time complexity of an algorithm?What are couple of ways to resolve collision in hash table?