what is the difference between a framework and a platform [closed]

Typically, “platform” refers to the actual hardware/software upon which a piece of software is built or for which it is destined. Example usage: “I built this app for the Windows platform.” “Framework” refers to a collection of libraries/classes with the common goal of providing a scaffold on which to build software. Frameworks might completely alter … Read more

What’s the difference between an “engine” and a “framework”? [closed]

These terms, and others, do seem very similar. They’re named from a conceptual standpoint, and so could be defined as follows: A “framework” is a “foundation” or “support structure” around which you build your actual application. The .NET Framework includes not only a foundation (the CLR) but a series of libraries that provide standardized functionality … Read more

Difference between a module, library and a framework

All three of those provide functionality. However, there are important differences. A library is just a collection of related functionality. Nothing more, but also nothing less. The defining characteristic of a library is that you are in control, you call the library. The defining characteristic of a framework is Inversion of Control. The framework calls … Read more

What is a Web Framework? How does it compare with LAMP?

To quote Wikipedia: A web application framework is a software framework that is designed to support the development of dynamic websites, web applications and web services. The framework aims to alleviate the overhead associated with common activities performed in Web development. Basically, a web framework makes it easier for you to develop your application. Most … Read more

tech