Sunday, December 24, 2017

Static Web Pages Versus Dynamic Web Pages

Question1- What is static web page?
Answer- A web page that contains static contents.

Question2- What is dynamic web page?
Answer- A web page generated by the server according to clients requests.

Question3- Why build web page dynamically?
Answer- There are following reason to build web page dynamically:
1- The Web page is based on data sent by the client.
    Example: Display current User name on the website

2- The Web page is derived from data that changes frequently.
    Example:
    1- Current date and time on the website
    2- New Headlines on news website
3-   Weather report on the website

3- The Web page uses information from corporate databases.
    Example: Search engine etc.

No comments:

Post a Comment

Java Functional Interface

Java Lambda expression Lambda expression came to enable to use functional programming feature in java. It provides the facility t...