What is difference between standalone and web applications | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is difference between standalone and web applications

Explain about standalone and web applications with real-time examples

6th Jul 2018, 3:39 PM
Bhargav
1 Answer
+ 5
Hello, Bhargav ! Web application: The user interface is displayed on the client machine using a specialized client (a.k.a. web browser) capabilities of the user interface on the client machine are limited in that it supports a web browser (including plug-ins). A programmer usually does not have the ability to implement arbitrary functions on the client, but must work within the capabilities supported by the client. Business logic and data warehouse are not on the client machine (in general, there may be limited exceptions). Rather, one or more servers perform these architectural roles. Communication between the client and the server occurs using the standard protocol of network communication (HTTP). Offline app:There are many different architectures for standalone applications. Some can be very similar to a web application; others are completely different. The programmer has full control (within the capabilities of the operating system and support of a wide range of user interfaces) over the user interface.
6th Jul 2018, 3:50 PM
Alexander Sokolov
Alexander Sokolov - avatar