Answer:
A web page document that is stored in the server but needs to be executed or processed before the result can be retrieved by a browser is called a "dynamic document" or a "server-side script".
Unlike static HTML documents that are retrieved as-is from the server, dynamic documents involve server-side processing to generate the content that will be sent to the browser. These documents often contain server-side scripting code written in languages like PHP, Python, ASP.NET, or Java, which are executed on the server to generate HTML content dynamically.
When a browser requests a dynamic document, the server processes the server-side script embedded within the document. The script may interact with databases, perform calculations, retrieve data from external sources, or perform other server-side operations. The output of the server-side script is then converted into HTML format and sent back to the browser for rendering.
Dynamic documents allow for more interactive and personalized web experiences as they can incorporate real-time data, user-specific information, and dynamic content updates. Examples of dynamic documents include web applications, e-commerce sites, content management systems, and online forums.
It's important to note that the term "document" here refers to the underlying file or resource containing the server-side script and not necessarily the visual representation seen by the user. The dynamic document is processed on the server, and the resulting HTML content is what is ultimately sent to the browser for display.
A web page document that is stored in the server but needs to be executed or processed before the result can be retrieved by a browser is called a "dynamic document" or a "server-side script".
Unlike static HTML documents that are retrieved as-is from the server, dynamic documents involve server-side processing to generate the content that will be sent to the browser. These documents often contain server-side scripting code written in languages like PHP, Python, ASP.NET, or Java, which are executed on the server to generate HTML content dynamically.
When a browser requests a dynamic document, the server processes the server-side script embedded within the document. The script may interact with databases, perform calculations, retrieve data from external sources, or perform other server-side operations. The output of the server-side script is then converted into HTML format and sent back to the browser for rendering.
Dynamic documents allow for more interactive and personalized web experiences as they can incorporate real-time data, user-specific information, and dynamic content updates. Examples of dynamic documents include web applications, e-commerce sites, content management systems, and online forums.
It's important to note that the term "document" here refers to the underlying file or resource containing the server-side script and not necessarily the visual representation seen by the user. The dynamic document is processed on the server, and the resulting HTML content is what is ultimately sent to the browser for display.
You may be interested in:
Web Fundamental MCQs