1.

What is a web application framework, and what are its benefits?

Answer»

Learning to build a modern WEB application can be daunting. Most of the web applications have a standard set of functionality such as:

  • Build a dynamic response that corresponds to an HTTP request.
  • Allow users to log into the application and manage their data.
  • Store the data in the DATABASE.
  • Handle database connections and transactions. 
  • Route URLS to appropriate methods.
  • Supporting sessions, cookies, and user authorization.
  • Format output (e.g. HTML, JSON, XML), and improve security.

Frameworks help developers to write, maintain and scale applications. They provide tools and libraries that simplify the above RECURRING TASKS, eliminating a lot of unnecessary complexity. 



Discussion

No Comment Found