20
Web Server & Web Application Server
Web server is a program that provides static contents like HTML documents by receiving HTTP request from the web browser (client).

Static contents mean that no matter what parameters or users will be, the response always includes the same contents.
Web application server is a program that is implemented for providing dynamic contents which require various logic processes or DB queries.

Dynamic contents can be varied from the input parameters or users
20